a7024416e4ff05722bc2bcee0c2771933899dfe3,ggplot/geoms/geom_area.py,geom_area,plot_layer,#geom_area#Any#Any#,10
Before Change
VALID_AES = ["x", "ymin", "ymax", "color", "alpha", "label"]
def plot_layer(self, layer, ax):
layer = dict((k, v) for k, v in layer.items() if k in self.VALID_AES)
layer.update(self.manual_aes)
x = layer.pop("x")
y1 = layer.pop("ymin")
y2 = layer.pop("ymax")
ax.fill_between(x, y1, y2, **layer)
After Change
VALID_AES = ["x", "ymin", "ymax", "color", "alpha", "label"]
def plot_layer(self, data, ax):
groups = {"color", "alpha"}
groups = groups & set(data.columns)
if groups:
for name, _data in data.groupby(list(groups)):
_data = _data.to_dict("list")
for ae in groups:
_data[ae] = _data[ae][0]
self._plot(_data, ax)
else:
_data = data.to_dict("list")
self._plot(_data, ax)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: has2k1/plotnine
Commit Name: a7024416e4ff05722bc2bcee0c2771933899dfe3
Time: 2014-03-30
Author: has2k1@gmail.com
File Name: ggplot/geoms/geom_area.py
Class Name: geom_area
Method Name: plot_layer
Project Name: has2k1/plotnine
Commit Name: 95c2a29c7f1992f78d11acfe9cdfee83a7516af2
Time: 2016-03-16
Author: has2k1@gmail.com
File Name: ggplot/geoms/geom_ribbon.py
Class Name: geom_ribbon
Method Name: draw_group
Project Name: pymc-devs/pymc3
Commit Name: 2511a589c617435eb6f2ffea187ecd43aec7994e
Time: 2017-05-18
Author: aloctavodia@gmail.com
File Name: pymc3/plots/energyplot.py
Class Name:
Method Name: energyplot