mpas_analysis.shared.plot.plotting.timeseries_analysis_plot_polar¶
-
mpas_analysis.shared.plot.plotting.
timeseries_analysis_plot_polar
(config, dsvalues, N, title, fileout, 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 and stores the result in an image file.
Parameters: - config : instance of ConfigParser
the configuration, containing a [plot] section with options that control plotting
- dsvalues : list of xarray DataSets
the data set(s) to be plotted
- N : int
the numer of time points over which to perform a moving average
- title : str
the title of the plot
- fileout : str
the file name to be written
- lineColors, lineStyles, markers, legendText : list of str, optional
control line color, style, marker, and corresponding legend text. Default is black, solid line with no marker, and no legend.
- lineWidths : list of float, optional
control line width. Default is 1.0.
- titleFontSize : int, optional
the size of the title font
- figsize : tuple of float, optional
the size of the figure in inches
- dpi : int, optional
the number of dots per inch of the figure, taken from section
plot
optiondpi
in the config file by default