61111647e6874d39af8d48650379e76f54a5bf71,plotting.py,PlotFrame,redraw,#PlotFrame#,71

Before Change


            if "linestyle" in kwds:
                del kwds["linestyle"]

        if kind != "scatter":
            if "s" in kwds:
                del kwds["s"]
       
        self.ax.clear()
        ax = self.ax
        if kind == "boxplot":         
            data.boxplot(ax=ax)

After Change


        data = self.data
        kwds = self.mplopts.kwds
        kind = kwds["kind"]
        ignore = omitkwds[kind]
        ignore.extend(["font","fontsize"])
        for i in ignore:
            if i in kwds:
                del kwds[i]
        if len(data.columns)==1:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: dmnfarrell/pandastable
Commit Name: 61111647e6874d39af8d48650379e76f54a5bf71
Time: 2014-02-13
Author: farrell.damien@gmail.com@c7c09e87-b3be-f776-313c-63292bcc8aec
File Name: plotting.py
Class Name: PlotFrame
Method Name: redraw


Project Name: markovmodel/PyEMMA
Commit Name: d58f782c5ed1e6e21035ec23012b54720f293503
Time: 2017-12-19
Author: m.scherer@fu-berlin.de
File Name: pyemma/_base/estimator.py
Class Name: Estimator
Method Name: __my_setstate__


Project Name: UFAL-DSG/tgen
Commit Name: d6c184579dee8328635016607049ab17f12c68e4
Time: 2014-08-20
Author: odusek@ufal.mff.cuni.cz
File Name: tgen/rank.py
Class Name: PerceptronRanker
Method Name: _get_rival_candidates