| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
🎓 This tutorial aims to support beginners to forecasting learn how to perform a basic temporal train test split of a time series. By following the tutorial you will:
The materials have been made available under an MIT license. The materials are as-is with no liability for the author. Please provide credit if you reuse the code in your own work.
If you reuse any of the code, or the tutorial helps you work, please provide a citation.
@software{TheOpenScienceNerd_TsSplit
author = {Monks, Thomas },
license = {MIT},
title = {{TheOpenScienceNerd - introduction to time series train test split}},
url = {https://github.com/TheOpenScienceNerd/temporal_train_test_split}
}All dependencies can be found in binder/environment.yml and are pulled from conda-forge. To run the code locally, we recommend installing miniforge;
miniforge is Free and Open Source Software (FOSS) alternative to Anaconda and miniconda that uses conda-forge as the default channel for packages. It installs both conda and mamba (a drop in replacement for conda) package managers. We recommend mamba for faster resolving of dependencies and installation of packages.
navigating your terminal (or cmd prompt) to the directory containing the repo and issuing the following command:
mamba env create -f binder/environment.ymlActivate the mamba environment using the following command:
mamba activate tsRun Jupyter-lab
jupyter-lab. ├── binder │ └── environment.yml ├── CHANGELOG.md ├── CITATION.cff ├── LICENSE ├── ts_plotting.py ├── 01_ts_train_test_split.ipynb └── README.md
| Back | FazBrowse Home | New Git URL |