microprediction / timemachines

Predict time-series with one line of code.
https://www.microprediction.com/blog/popular-timeseries-packages
MIT License
395 stars 51 forks source link

Add some of the pycaret datasets as loop streams #55

Open microprediction opened 2 years ago

microprediction commented 2 years ago

https://github.com/pycaret/datasets

microprediction commented 2 years ago

load_data("1", folder = "time_series/seasonal") to get the data.

All available datasets can be found using

load_data(index=True, folder = "time_series/seasonal")

ngupta23 commented 2 years ago

Based on the index, you can see how many datasets are available, then the number "1" can change based on the index of the dataset you want. Then there are datasets for random walks and white noise as well.

load_data("1", folder = "time_series/seasonal")
load_data("1", folder = "time_series/white_noise")
load_data("1", folder = "time_series/random_walk")