pyrad.graph.plot_monitoring_ts#
- pyrad.graph.plot_monitoring_ts(date, np_t, val_mean_and_quant, quantiles, field_name, fname_list, ref_value=None, vmin=None, vmax=None, np_min=0, labelx='Time [UTC]', labely='Value', titl='Time Series', dpi=72, plot_until_year_end=False)[source]#
Plots a time series of monitoring data.
- Parameters:
date (datetime object) – Time of the time series.
np_t (int array) – Number of points.
val_mean_and_quant (float array) – Values of the mean in dB, mean in dB computed from linear units, followed by all quantiles.
quantiles (1D ndarray) – The computed quantiles.
field_name (str) – Name of the field.
fname_list (list of str) – List of filenames where to store the plot.
ref_value (float, optional) – The reference value.
vmin, vmax (float, optional) – Limits of the y-axis.
np_min (int, optional) – Minimum number of points to consider the sample plottable.
labelx (str, optional) – Label for the X-axis.
labely (str, optional) – Label for the Y-axis.
titl (str, optional) – The figure title.
dpi (int, optional) – Dots per inch.
plot_until_year_end (bool, optional) – If True, sets the maximum x-tick to the end of the year.
- Returns:
fname_list (list of str) – List of filenames of the created plots.