99c398dd16cc33d2d8f6a62b581927ae6f1b14d4,ggplot/stats/stat_bindot.py,stat_bindot,compute_panel,#Any#Any#Any#,40
Before Change
weight=data.get("weight"),
binwidth=params["binwidth"],
bins=params["bins"])
data.sort(columns="x", inplace=True)
data.reset_index(inplace=True, drop=True)
newdata.sort(columns="x", inplace=True)
newdata.reset_index(inplace=True, drop=True)
elif params["binaxis"] == "y":
After Change
weight=data.get("weight"),
binwidth=params["binwidth"],
bins=params["bins"])
data = data.sort_values("x")
data.reset_index(inplace=True, drop=True)
newdata = newdata.sort_values("x")
newdata.reset_index(inplace=True, drop=True)
elif params["binaxis"] == "y":
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 3
Instances
Project Name: has2k1/plotnine
Commit Name: 99c398dd16cc33d2d8f6a62b581927ae6f1b14d4
Time: 2015-11-17
Author: has2k1@gmail.com
File Name: ggplot/stats/stat_bindot.py
Class Name: stat_bindot
Method Name: compute_panel
Project Name: has2k1/plotnine
Commit Name: 99c398dd16cc33d2d8f6a62b581927ae6f1b14d4
Time: 2015-11-17
Author: has2k1@gmail.com
File Name: ggplot/geoms/geom_path.py
Class Name: geom_path
Method Name: draw_panel
Project Name: has2k1/plotnine
Commit Name: 99c398dd16cc33d2d8f6a62b581927ae6f1b14d4
Time: 2015-11-17
Author: has2k1@gmail.com
File Name: ggplot/facets/locate.py
Class Name:
Method Name: locate_wrap
Project Name: has2k1/plotnine
Commit Name: 99c398dd16cc33d2d8f6a62b581927ae6f1b14d4
Time: 2015-11-17
Author: has2k1@gmail.com
File Name: ggplot/facets/locate.py
Class Name:
Method Name: locate_grid