83ceee3b08a8e12b286479b021e85b64fc8eb40d,plotnine/coords/coord.py,coord,range,#coord#Any#,136

Before Change


        Return the range along the dimensions of the coordinate system
        
        // Defaults to providing the 2D x-y ranges
        return types.SimpleNamespace(x=panel_params["x_range"],
                                     y=panel_params["y_range"])

    def backtransform_range(self, panel_params):

After Change


        Return the range along the dimensions of the coordinate system
        
        // Defaults to providing the 2D x-y ranges
        return NS(x=panel_params.x.range,
                  y=panel_params.y.range)

    def backtransform_range(self, panel_params):
        
        Get the panel range provided in panel_params and backtransforms it
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 2

Instances


Project Name: has2k1/plotnine
Commit Name: 83ceee3b08a8e12b286479b021e85b64fc8eb40d
Time: 2019-08-18
Author: has2k1@gmail.com
File Name: plotnine/coords/coord.py
Class Name: coord
Method Name: range


Project Name: has2k1/plotnine
Commit Name: 83ceee3b08a8e12b286479b021e85b64fc8eb40d
Time: 2019-08-18
Author: has2k1@gmail.com
File Name: plotnine/ggplot.py
Class Name: ggplot
Method Name: _draw_labels


Project Name: has2k1/plotnine
Commit Name: 83ceee3b08a8e12b286479b021e85b64fc8eb40d
Time: 2019-08-18
Author: has2k1@gmail.com
File Name: plotnine/coords/coord_flip.py
Class Name: coord_flip
Method Name: range