Skip to main content

Documentation Index

Fetch the complete documentation index at: https://nixtlaverse.nixtla.io/llms.txt

Use this file to discover all available pages before exploring further.

Install

pip install datasetsforecast

Datasets

How to use

All the modules have a load method which you can use to load the dataset for a specific group. If you don’t have the data locally it will be downloaded for you.
from datasetsforecast.phm2008 import PHM2008
train_df, test_df = PHM2008.load(directory='data', group='FD001')
train_df.shape, test_df.shape
((20631, 17), (13096, 17))