1352bd559814bb35fe800792cc2268c253433a4e,ggplot/facets/facet_grid.py,facet_grid,__init__,#facet_grid#Any#Any#Any#Any#Any#Any#Any#Any#,15

Before Change



        self.rows, self.cols = parse_grid_facets(facets)
        self.margins = margins
        self.shrink = shrink
        self.labeller = as_labeller(labeller)
        self.as_table = as_table
        self.drop = drop
        self.free = {"x": scales in ("free_x", "free"),
                     "y": scales in ("free_y", "free")}
        self.space_free = {"x": space in ("free_x", "free"),
                           "y": space in ("free_y", "free")}

    def __radd__(self, gg):

After Change


    def __init__(self, facets, margins=False, scales="fixed",
                 space="fixed", shrink=True, labeller="label_value",
                 as_table=True, drop=True):
        facet.__init__(
            self, scales=scales, shrink=shrink, labeller=labeller,
            as_table=as_table, drop=drop)
        self.rows, self.cols = parse_grid_facets(facets)
        self.margins = margins
        self.space_free = {"x": space in ("free_x", "free"),
                           "y": space in ("free_y", "free")}
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 13

Instances


Project Name: has2k1/plotnine
Commit Name: 1352bd559814bb35fe800792cc2268c253433a4e
Time: 2016-06-30
Author: has2k1@gmail.com
File Name: ggplot/facets/facet_grid.py
Class Name: facet_grid
Method Name: __init__


Project Name: NifTK/NiftyNet
Commit Name: 72e0907d7784f62157906818686da273ab6aa7ed
Time: 2018-09-11
Author: wenqi.li@ucl.ac.uk
File Name: niftynet/contrib/segmentation_bf_aug/segmentation_application_bfaug.py
Class Name: SegmentationApplicationBFAug
Method Name: __init__


Project Name: has2k1/plotnine
Commit Name: 1352bd559814bb35fe800792cc2268c253433a4e
Time: 2016-06-30
Author: has2k1@gmail.com
File Name: ggplot/facets/facet_wrap.py
Class Name: facet_wrap
Method Name: __init__


Project Name: has2k1/plotnine
Commit Name: 1352bd559814bb35fe800792cc2268c253433a4e
Time: 2016-06-30
Author: has2k1@gmail.com
File Name: ggplot/facets/facet_grid.py
Class Name: facet_grid
Method Name: __init__