Learning Task Plotting¶
This is a simple notebook displaying some of the learning task specific visualisation functionalities available in aeon.
This is in-progress, and does not contain detailed descriptions and documentation yet.
[1]:
from aeon.datasets import load_airline, load_electric_devices_segmentation
ed_seg, _, ed_seg_chp = load_electric_devices_segmentation()
airline = load_airline()
Segmentation¶
[4]:
from aeon.visualisation import plot_series_with_change_points
[5]:
_ = plot_series_with_change_points(ed_seg, ed_seg_chp)
Generated using nbsphinx. The Jupyter notebook can be found here.