Adding a New Dataset¶
Follow these steps to add a new dataset to sktime:
Include CSV file or other supported format under
sktime/datasets/data/<dataset-name>Add
load_<dataset-name>(...)function in filesktime/datasets/base.pyAdd
<dataset-name>to the list__all__ = [...]in filesktime/datasets/__init__.pyAdd
<dataset-name>as argument to methodincluded_datasets = (...in filesktime/sktime/datasets/setup.pyAdd
<dataset-name>to the list of included problems in filesktime/sktime/datasets/setup.py