├── .DS_Store ├── Dynamic pricing and demand forecasting ├── DIGINIKE.pbix ├── Price_Optimization_and_Dynamic_Forecasting │ └── Nike_dynamic_pricing.zip ├── RetailPriceOptimizationSolution.pbix └── nikeintro.pbix ├── LICENSE ├── NextPurchase ├── .DS_Store └── Next_Purchase Predict.ipynb ├── Project_proposal.pdf ├── README.md ├── RFM ├── Day_online_sales.csv ├── Order_dataset.csv ├── RFM.csv ├── RFM.ipynb └── cohort_counts.csv ├── Scrapper ├── .DS_Store └── Nike_scrapper │ ├── .DS_Store │ ├── Nike_scrapper │ ├── .DS_Store │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── settings.cpython-37.pyc │ ├── items.py │ ├── middlewares.py │ ├── pipelines.py │ ├── settings.py │ └── spiders │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── nike_spider.cpython-37.pyc │ │ ├── nike_spider.py │ │ ├── productkids.json │ │ ├── productmen.json │ │ └── productwomen.json │ └── scrapy.cfg ├── Website ├── .DS_Store ├── NextPurchase.pkl ├── X ├── app.py ├── meanagg ├── rfmModel.pkl ├── static │ ├── .DS_Store │ ├── css │ │ ├── meanstyle.css │ │ └── style.css │ └── js │ │ ├── .DS_Store │ │ └── main.js └── templates │ ├── .DS_Store │ ├── cusindex.html │ ├── error.html │ ├── index.html │ ├── jupyter.html │ ├── main.html │ └── meantable.html └── asset ├── Global_feature importance.png ├── Interpret_1.png ├── Nike_website_insights.png ├── Price_optimization.png ├── dynamic_pricing.png ├── local_imp.png └── local_imp2.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/.DS_Store -------------------------------------------------------------------------------- /Dynamic pricing and demand forecasting/DIGINIKE.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Dynamic pricing and demand forecasting/DIGINIKE.pbix -------------------------------------------------------------------------------- /Dynamic pricing and demand forecasting/Price_Optimization_and_Dynamic_Forecasting/Nike_dynamic_pricing.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Dynamic pricing and demand forecasting/Price_Optimization_and_Dynamic_Forecasting/Nike_dynamic_pricing.zip -------------------------------------------------------------------------------- /Dynamic pricing and demand forecasting/RetailPriceOptimizationSolution.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Dynamic pricing and demand forecasting/RetailPriceOptimizationSolution.pbix -------------------------------------------------------------------------------- /Dynamic pricing and demand forecasting/nikeintro.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Dynamic pricing and demand forecasting/nikeintro.pbix -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/LICENSE -------------------------------------------------------------------------------- /NextPurchase/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/NextPurchase/.DS_Store -------------------------------------------------------------------------------- /NextPurchase/Next_Purchase Predict.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/NextPurchase/Next_Purchase Predict.ipynb -------------------------------------------------------------------------------- /Project_proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Project_proposal.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/README.md -------------------------------------------------------------------------------- /RFM/Day_online_sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/RFM/Day_online_sales.csv -------------------------------------------------------------------------------- /RFM/Order_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/RFM/Order_dataset.csv -------------------------------------------------------------------------------- /RFM/RFM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/RFM/RFM.csv -------------------------------------------------------------------------------- /RFM/RFM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/RFM/RFM.ipynb -------------------------------------------------------------------------------- /RFM/cohort_counts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/RFM/cohort_counts.csv -------------------------------------------------------------------------------- /Scrapper/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/.DS_Store -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/.DS_Store -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/.DS_Store -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/items.py -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/middlewares.py -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/pipelines.py -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/settings.py -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/spiders/__init__.py -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/spiders/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/spiders/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/spiders/__pycache__/nike_spider.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/spiders/__pycache__/nike_spider.cpython-37.pyc -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/spiders/nike_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/spiders/nike_spider.py -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/spiders/productkids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/spiders/productkids.json -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/spiders/productmen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/spiders/productmen.json -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/Nike_scrapper/spiders/productwomen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/Nike_scrapper/spiders/productwomen.json -------------------------------------------------------------------------------- /Scrapper/Nike_scrapper/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Scrapper/Nike_scrapper/scrapy.cfg -------------------------------------------------------------------------------- /Website/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/.DS_Store -------------------------------------------------------------------------------- /Website/NextPurchase.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/NextPurchase.pkl -------------------------------------------------------------------------------- /Website/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/X -------------------------------------------------------------------------------- /Website/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/app.py -------------------------------------------------------------------------------- /Website/meanagg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/meanagg -------------------------------------------------------------------------------- /Website/rfmModel.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/rfmModel.pkl -------------------------------------------------------------------------------- /Website/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/static/.DS_Store -------------------------------------------------------------------------------- /Website/static/css/meanstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/static/css/meanstyle.css -------------------------------------------------------------------------------- /Website/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/static/css/style.css -------------------------------------------------------------------------------- /Website/static/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/static/js/.DS_Store -------------------------------------------------------------------------------- /Website/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/static/js/main.js -------------------------------------------------------------------------------- /Website/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/templates/.DS_Store -------------------------------------------------------------------------------- /Website/templates/cusindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/templates/cusindex.html -------------------------------------------------------------------------------- /Website/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/templates/error.html -------------------------------------------------------------------------------- /Website/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/templates/index.html -------------------------------------------------------------------------------- /Website/templates/jupyter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/templates/jupyter.html -------------------------------------------------------------------------------- /Website/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/templates/main.html -------------------------------------------------------------------------------- /Website/templates/meantable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/Website/templates/meantable.html -------------------------------------------------------------------------------- /asset/Global_feature importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/asset/Global_feature importance.png -------------------------------------------------------------------------------- /asset/Interpret_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/asset/Interpret_1.png -------------------------------------------------------------------------------- /asset/Nike_website_insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/asset/Nike_website_insights.png -------------------------------------------------------------------------------- /asset/Price_optimization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/asset/Price_optimization.png -------------------------------------------------------------------------------- /asset/dynamic_pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/asset/dynamic_pricing.png -------------------------------------------------------------------------------- /asset/local_imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/asset/local_imp.png -------------------------------------------------------------------------------- /asset/local_imp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi-gm/PowerBI-Dashboard-for-Price-Optimization-and-Dynamic-Forecasting/HEAD/asset/local_imp2.png --------------------------------------------------------------------------------