psyplot.project.plot.linreg
- plot.linreg(*args, **kwargs)
Draw a fit from x to y
This plotting method adds data arrays and plots them via
psy_reg.plotters.LinRegPlotter
plottersTo plot data from a netCDF file type:
>>> psy.plot.linreg(filename, name=['my_variable'], ...)
Examples
To explore the formatoptions and their documentations, use the
keys
,summaries
anddocs
methods. For example:>>> import psyplot.project as psy # show the keys corresponding to a group or multiple # formatopions >>> psy.plot.linreg.keys('labels') # show the summaries of a group of formatoptions or of a # formatoption >>> psy.plot.linreg.summaries('title') # show the full documentation >>> psy.plot.linreg.docs('plot') # or access the documentation via the attribute >>> psy.plot.linreg.plot