├── .gitignore ├── README.md ├── Yilan Zhu-Forecasting system of electricity load of New York State Poster.pdf ├── matlab ├── README.md ├── Total load 2006-2015.xls └── mainpredictio.m └── python ├── get_data.sh └── main.py /.gitignore: -------------------------------------------------------------------------------- 1 | python/data -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandazhuyilan/NY-Electricity-Load-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /Yilan Zhu-Forecasting system of electricity load of New York State Poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandazhuyilan/NY-Electricity-Load-Prediction/HEAD/Yilan Zhu-Forecasting system of electricity load of New York State Poster.pdf -------------------------------------------------------------------------------- /matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandazhuyilan/NY-Electricity-Load-Prediction/HEAD/matlab/README.md -------------------------------------------------------------------------------- /matlab/Total load 2006-2015.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandazhuyilan/NY-Electricity-Load-Prediction/HEAD/matlab/Total load 2006-2015.xls -------------------------------------------------------------------------------- /matlab/mainpredictio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandazhuyilan/NY-Electricity-Load-Prediction/HEAD/matlab/mainpredictio.m -------------------------------------------------------------------------------- /python/get_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandazhuyilan/NY-Electricity-Load-Prediction/HEAD/python/get_data.sh -------------------------------------------------------------------------------- /python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandazhuyilan/NY-Electricity-Load-Prediction/HEAD/python/main.py --------------------------------------------------------------------------------