├── .gitignore ├── LICENSE ├── daily ├── .ipynb_checkpoints │ ├── eda-checkpoint.ipynb │ ├── final-checkpoint.ipynb │ ├── lstm-checkpoint.ipynb │ └── sarimax-checkpoint.ipynb ├── LSTM.ipynb ├── cleaned-daily.csv ├── daily.csv ├── data_window.png ├── eda.ipynb ├── final.html ├── final.ipynb └── sarimax.ipynb ├── data-fetching.ipynb ├── docs ├── README.md └── assets │ └── images │ └── result.png ├── hourly ├── .ipynb_checkpoints │ ├── eda_hourly-checkpoint.ipynb │ └── wrangling-checkpoint.ipynb ├── eda_hourly.ipynb ├── hourly.ipynb ├── prophet.ipynb └── wrangling.ipynb └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /daily/.ipynb_checkpoints/eda-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/.ipynb_checkpoints/eda-checkpoint.ipynb -------------------------------------------------------------------------------- /daily/.ipynb_checkpoints/final-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/.ipynb_checkpoints/final-checkpoint.ipynb -------------------------------------------------------------------------------- /daily/.ipynb_checkpoints/lstm-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/.ipynb_checkpoints/lstm-checkpoint.ipynb -------------------------------------------------------------------------------- /daily/.ipynb_checkpoints/sarimax-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/.ipynb_checkpoints/sarimax-checkpoint.ipynb -------------------------------------------------------------------------------- /daily/LSTM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/LSTM.ipynb -------------------------------------------------------------------------------- /daily/cleaned-daily.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/cleaned-daily.csv -------------------------------------------------------------------------------- /daily/daily.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/daily.csv -------------------------------------------------------------------------------- /daily/data_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/data_window.png -------------------------------------------------------------------------------- /daily/eda.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/eda.ipynb -------------------------------------------------------------------------------- /daily/final.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/final.html -------------------------------------------------------------------------------- /daily/final.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/final.ipynb -------------------------------------------------------------------------------- /daily/sarimax.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/daily/sarimax.ipynb -------------------------------------------------------------------------------- /data-fetching.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/data-fetching.ipynb -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/images/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/docs/assets/images/result.png -------------------------------------------------------------------------------- /hourly/.ipynb_checkpoints/eda_hourly-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/hourly/.ipynb_checkpoints/eda_hourly-checkpoint.ipynb -------------------------------------------------------------------------------- /hourly/.ipynb_checkpoints/wrangling-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/hourly/.ipynb_checkpoints/wrangling-checkpoint.ipynb -------------------------------------------------------------------------------- /hourly/eda_hourly.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/hourly/eda_hourly.ipynb -------------------------------------------------------------------------------- /hourly/hourly.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/hourly/hourly.ipynb -------------------------------------------------------------------------------- /hourly/prophet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/hourly/prophet.ipynb -------------------------------------------------------------------------------- /hourly/wrangling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/hourly/wrangling.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quan-possible/energy-demand-prediction/HEAD/requirements.txt --------------------------------------------------------------------------------