mpas_analysis.shared.plot.timeseries_analysis_plot_polar

mpas_analysis.shared.plot.timeseries_analysis_plot_polar(config, dsvalues, N, title, lineColors=None, lineStyles=None, markers=None, lineWidths=None, legendText=None, titleFontSize=None, figsize=(15, 6), dpi=None)[source]

Plots the list of time series data sets on a polar plot.

Parameters
configinstance of ConfigParser

the configuration, containing a [plot] section with options that control plotting

dsvalueslist of xarray DataSets

the data set(s) to be plotted

Nint

the numer of time points over which to perform a moving average

titlestr

the title of the plot

lineColors, lineStyles, markers, legendTextlist of str, optional

control line color, style, marker, and corresponding legend text. Default is black, solid line with no marker, and no legend.

lineWidthslist of float, optional

control line width. Default is 1.0.

titleFontSizeint, optional

the size of the title font

figsizetuple of float, optional

the size of the figure in inches

dpiint, optional

the number of dots per inch of the figure, taken from section plot option dpi in the config file by default

Returns
figmatplotlib.figure.Figure

The resulting figure