├── .gitignore ├── Gray_model ├── data.xlsx ├── graymodel.ipynb └── 折线图.png ├── LICENSE ├── README.md ├── Single_exponential_smoothing ├── input.xlsx ├── main.py ├── out.xls └── requirements.txt ├── exponential_smoothing ├── exponential_smoothing.ipynb ├── requirements.txt ├── 折线图.png ├── 指数平滑预测.xls └── 散点图.png └── weighted_moving_forecasting_method ├── input.xlsx ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /Gray_model/data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/Gray_model/data.xlsx -------------------------------------------------------------------------------- /Gray_model/graymodel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/Gray_model/graymodel.ipynb -------------------------------------------------------------------------------- /Gray_model/折线图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/Gray_model/折线图.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/README.md -------------------------------------------------------------------------------- /Single_exponential_smoothing/input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/Single_exponential_smoothing/input.xlsx -------------------------------------------------------------------------------- /Single_exponential_smoothing/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/Single_exponential_smoothing/main.py -------------------------------------------------------------------------------- /Single_exponential_smoothing/out.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/Single_exponential_smoothing/out.xls -------------------------------------------------------------------------------- /Single_exponential_smoothing/requirements.txt: -------------------------------------------------------------------------------- 1 | xlrd 2 | xlwt 3 | matplotlib 4 | numpy -------------------------------------------------------------------------------- /exponential_smoothing/exponential_smoothing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/exponential_smoothing/exponential_smoothing.ipynb -------------------------------------------------------------------------------- /exponential_smoothing/requirements.txt: -------------------------------------------------------------------------------- 1 | xlrd 2 | xlwt 3 | matplotlib 4 | numpy -------------------------------------------------------------------------------- /exponential_smoothing/折线图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/exponential_smoothing/折线图.png -------------------------------------------------------------------------------- /exponential_smoothing/指数平滑预测.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/exponential_smoothing/指数平滑预测.xls -------------------------------------------------------------------------------- /exponential_smoothing/散点图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/exponential_smoothing/散点图.png -------------------------------------------------------------------------------- /weighted_moving_forecasting_method/input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/weighted_moving_forecasting_method/input.xlsx -------------------------------------------------------------------------------- /weighted_moving_forecasting_method/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishelo/Logistics-Demand-Forecasting-By-Python/HEAD/weighted_moving_forecasting_method/main.py -------------------------------------------------------------------------------- /weighted_moving_forecasting_method/requirements.txt: -------------------------------------------------------------------------------- 1 | xlrd 2 | xlwt --------------------------------------------------------------------------------