Time Series Analysis
from pathlib import Path
DATA_DIR = Path("/kaggle/input")
if (DATA_DIR / "ucfai-core-sp20-time-series").exists():
DATA_DIR /= "ucfai-core-sp20-time-series"
else:
# You'll need to download the data from Kaggle and place it in the `data/`
# directory beside this notebook.
# The data should be here: https://kaggle.com/c/ucfai-core-sp20-time-series/data
DATA_DIR = Path("data")