├── .gitignore ├── Deployment ├── README.md ├── assets │ ├── CreateDatabaseObjects.sql │ ├── DemandForecast.zip │ ├── ExampleDemandData.csv │ ├── architecture.PNG │ └── dbschema_sourcediagram.PNG └── core │ ├── DataFactoryDeploy.json │ ├── FcastMlDeploy.json │ └── SqlDeploy.json ├── LICENSE ├── README.md └── Technical Deployment Guide ├── ADF ├── code │ └── forecasting │ │ ├── distribution_forecast_test_local.R │ │ └── src │ │ ├── forecast_aml.R │ │ ├── forecast_aml.xml │ │ ├── forecast_util.R │ │ └── libraries │ │ ├── dplyr_0.4.1.zip │ │ └── hts_5.0.zip └── db │ ├── ExampleDataGen.R │ ├── dbschemas.sql │ └── reset_slices.ps1 ├── Technical-Solution-Guide.md └── media ├── architecture.PNG ├── ciqs_resources.png ├── dbschema_sourcediagram.PNG └── powerbisnapshot.PNG /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/.gitignore -------------------------------------------------------------------------------- /Deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Deployment/README.md -------------------------------------------------------------------------------- /Deployment/assets/CreateDatabaseObjects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Deployment/assets/CreateDatabaseObjects.sql -------------------------------------------------------------------------------- /Deployment/assets/DemandForecast.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Deployment/assets/DemandForecast.zip -------------------------------------------------------------------------------- /Deployment/assets/ExampleDemandData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Deployment/assets/ExampleDemandData.csv -------------------------------------------------------------------------------- /Deployment/assets/architecture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Deployment/assets/architecture.PNG -------------------------------------------------------------------------------- /Deployment/assets/dbschema_sourcediagram.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Deployment/assets/dbschema_sourcediagram.PNG -------------------------------------------------------------------------------- /Deployment/core/DataFactoryDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Deployment/core/DataFactoryDeploy.json -------------------------------------------------------------------------------- /Deployment/core/FcastMlDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Deployment/core/FcastMlDeploy.json -------------------------------------------------------------------------------- /Deployment/core/SqlDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Deployment/core/SqlDeploy.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/README.md -------------------------------------------------------------------------------- /Technical Deployment Guide/ADF/code/forecasting/distribution_forecast_test_local.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/ADF/code/forecasting/distribution_forecast_test_local.R -------------------------------------------------------------------------------- /Technical Deployment Guide/ADF/code/forecasting/src/forecast_aml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/ADF/code/forecasting/src/forecast_aml.R -------------------------------------------------------------------------------- /Technical Deployment Guide/ADF/code/forecasting/src/forecast_aml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/ADF/code/forecasting/src/forecast_aml.xml -------------------------------------------------------------------------------- /Technical Deployment Guide/ADF/code/forecasting/src/forecast_util.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/ADF/code/forecasting/src/forecast_util.R -------------------------------------------------------------------------------- /Technical Deployment Guide/ADF/code/forecasting/src/libraries/dplyr_0.4.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/ADF/code/forecasting/src/libraries/dplyr_0.4.1.zip -------------------------------------------------------------------------------- /Technical Deployment Guide/ADF/code/forecasting/src/libraries/hts_5.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/ADF/code/forecasting/src/libraries/hts_5.0.zip -------------------------------------------------------------------------------- /Technical Deployment Guide/ADF/db/ExampleDataGen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/ADF/db/ExampleDataGen.R -------------------------------------------------------------------------------- /Technical Deployment Guide/ADF/db/dbschemas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/ADF/db/dbschemas.sql -------------------------------------------------------------------------------- /Technical Deployment Guide/ADF/db/reset_slices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/ADF/db/reset_slices.ps1 -------------------------------------------------------------------------------- /Technical Deployment Guide/Technical-Solution-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/Technical-Solution-Guide.md -------------------------------------------------------------------------------- /Technical Deployment Guide/media/architecture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/media/architecture.PNG -------------------------------------------------------------------------------- /Technical Deployment Guide/media/ciqs_resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/media/ciqs_resources.png -------------------------------------------------------------------------------- /Technical Deployment Guide/media/dbschema_sourcediagram.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/media/dbschema_sourcediagram.PNG -------------------------------------------------------------------------------- /Technical Deployment Guide/media/powerbisnapshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/cortana-intelligence-shipping-and-distribution-forecasting/HEAD/Technical Deployment Guide/media/powerbisnapshot.PNG --------------------------------------------------------------------------------