d17c95dd266ae47b9bc552165319405ef7f90f51,examples/basic/regression.py,PlotFrame,_create_window,#PlotFrame#,32

Before Change



    def _create_window(self):

        pd = ArrayPlotData(x=random(100), y=random(100))

        // Create some line plots of some of the data
        plot = Plot(pd)
        
        // Create a scatter plot and get a reference to it (separate from the
        // Plot object) because we"ll need it for the regression tool below.
        scatterplot = plot.plot(("x", "y"), color="blue", type="scatter")[0]

        // Tweak some of the plot properties
        plot.padding = 50

        // Attach some tools to the plot
        plot.tools.append(PanTool(plot, drag_button="right"))
        plot.overlays.append(ZoomTool(plot))

        // Add the regression tool and overlay.  These need to be added
        // directly to the scatterplot instance (and not the Plot instance).
        regression = RegressionLasso(scatterplot,
                selection_datasource=scatterplot.index)
        scatterplot.tools.append(regression)
        scatterplot.overlays.append(RegressionOverlay(scatterplot, lasso_selection=regression))

After Change



    def _create_window(self):
        // Return a window containing our plots
        return Window(self, -1, component=_create_plot_component())
    
if __name__ == "__main__":
    demo_main(PlotFrame, size=size, title=title)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: enthought/chaco
Commit Name: d17c95dd266ae47b9bc552165319405ef7f90f51
Time: 2009-01-29
Author: vibha@651a555e-23ca-0310-84fe-ca9f7c59d2ea
File Name: examples/basic/regression.py
Class Name: PlotFrame
Method Name: _create_window


Project Name: enthought/chaco
Commit Name: d17c95dd266ae47b9bc552165319405ef7f90f51
Time: 2009-01-29
Author: vibha@651a555e-23ca-0310-84fe-ca9f7c59d2ea
File Name: examples/basic/scatter_custom_marker.py
Class Name: PlotFrame
Method Name: _create_window


Project Name: enthought/chaco
Commit Name: d17c95dd266ae47b9bc552165319405ef7f90f51
Time: 2009-01-29
Author: vibha@651a555e-23ca-0310-84fe-ca9f7c59d2ea
File Name: examples/basic/scatter.py
Class Name: PlotFrame
Method Name: _create_window