psyplot.project.plot.fldmean

plot.fldmean(*args, **kwargs)

Calculate and plot the mean over x- and y-dimensions

This plotting method adds data arrays and plots them via psy_simple.plotters.FldmeanPlotter plotters

To plot data from a netCDF file type:

>>> psy.plot.fldmean(filename, name=['my_variable'], ...)

Examples

To explore the formatoptions and their documentations, use the keys, summaries and docs methods. For example:

>>> import psyplot.project as psy

# show the keys corresponding to a group or multiple
# formatopions
>>> psy.plot.fldmean.keys('labels')

# show the summaries of a group of formatoptions or of a
# formatoption
>>> psy.plot.fldmean.summaries('title')

# show the full documentation
>>> psy.plot.fldmean.docs('plot')

# or access the documentation via the attribute
>>> psy.plot.fldmean.plot