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