Getting started
API Documentation
Development
Time series plot of truth and predicted values.
truth (Sequence | Series) – truth values
Sequence
Series
prediction (Sequence | Series) – predicted values
ax (Axes) – pre-existing axes for the plot. Otherwise, calls matplotlib.pyplot.gca() internally
Axes
matplotlib.pyplot.gca()
Examples
>>> truth = [-1, 0, 1, 0, -1, 0, 1] >>> prediction = [0, 1, 0, -1, 0, 1, 0] >>> series(truth, prediction)