earthkit.plots.timeseries¶
Time series plots. Accessed as ekp.timeseries on the top-level
earthkit.plots package.
- earthkit.plots.timeseries[source]¶
Bases:
objectShortcuts for time series plots.
- line(*args, **kwargs)[source]¶
Plot one or more time series as lines.
Equivalent to the
timeseriesquickplot function withplot="line". Accepts all parameters ofearthkit.plots.quickplot.timeseries().
- scatter(*args, **kwargs)[source]¶
Plot time series data as scatter points.
Equivalent to the
timeseriesquickplot function withplot="scatter". Accepts all parameters ofearthkit.plots.quickplot.timeseries().
- bar(*args, **kwargs)[source]¶
Plot time series data as bars.
Equivalent to the
timeseriesquickplot function withplot="bar". Accepts all parameters ofearthkit.plots.quickplot.timeseries().
- fill_between(*args, **kwargs)[source]¶
Fill the area between two time series curves.
Equivalent to the
timeseriesquickplot function withplot="fill_between". Accepts all parameters ofearthkit.plots.quickplot.timeseries().