sktime.utils.plotting

sktime.utils.plotting.plot_series(*series, labels=None, markers=None)[source]

Plot one or more time series

Parameters
  • series (pd.Series) – One or more time series

  • labels (list, optional (default=None)) – Names of series, will be displayed in figure legend

  • markers (list, optional (default=None)) – Markers of data points, if None the marker “o” is used by default. Lenght of list has to match with number of series

Returns

  • fig (plt.Figure)

  • ax (plt.Axis)