earthkit.plots.timeseries

Time series plots. Accessed as ekp.timeseries on the top-level earthkit.plots package.

earthkit.plots.timeseries[source]

Bases: object

Shortcuts for time series plots.

line(*args, **kwargs)[source]

Plot one or more time series as lines.

Equivalent to the timeseries quickplot function with plot="line". Accepts all parameters of earthkit.plots.quickplot.timeseries().

scatter(*args, **kwargs)[source]

Plot time series data as scatter points.

Equivalent to the timeseries quickplot function with plot="scatter". Accepts all parameters of earthkit.plots.quickplot.timeseries().

bar(*args, **kwargs)[source]

Plot time series data as bars.

Equivalent to the timeseries quickplot function with plot="bar". Accepts all parameters of earthkit.plots.quickplot.timeseries().

fill_between(*args, **kwargs)[source]

Fill the area between two time series curves.

Equivalent to the timeseries quickplot function with plot="fill_between". Accepts all parameters of earthkit.plots.quickplot.timeseries().

multiboxplot(*args, **kwargs)[source]

Plot an ensemble spread as a multiboxplot (letter-value plot).

Equivalent to the timeseries quickplot function with plot="multiboxplot". Accepts all parameters of earthkit.plots.quickplot.timeseries().

stripes(*args, **kwargs)[source]

Plot climate stripes.

Draws one vertical colored bar per data point, colored by value through the given (or auto-detected) style.

Equivalent to the timeseries quickplot function with plot="stripes". Accepts all parameters of earthkit.plots.quickplot.timeseries().