├── .gitignore ├── LICENSE ├── README.md ├── brands ├── hul │ ├── hul.csv │ ├── links2.csv │ ├── links_day2.csv │ └── ratings │ │ ├── ratings_010719.csv │ │ ├── ratings_020719.csv │ │ ├── ratings_030719.csv │ │ ├── ratings_050719.csv │ │ ├── ratings_080719.csv │ │ ├── ratings_090719.csv │ │ └── ratings_200619.csv └── p&g │ ├── links.csv │ ├── p&g.csv │ └── ratings │ ├── ratings_050719.csv │ ├── ratings_080719.csv │ └── ratings_090719.csv ├── flipkart.py ├── preliminary.ipynb └── reports ├── UCG-Report.csv ├── report.csv └── top-100.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NPS-Correlation -------------------------------------------------------------------------------- /brands/hul/hul.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/hul/hul.csv -------------------------------------------------------------------------------- /brands/hul/links2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/hul/links2.csv -------------------------------------------------------------------------------- /brands/hul/links_day2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/hul/links_day2.csv -------------------------------------------------------------------------------- /brands/hul/ratings/ratings_010719.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/hul/ratings/ratings_010719.csv -------------------------------------------------------------------------------- /brands/hul/ratings/ratings_020719.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/hul/ratings/ratings_020719.csv -------------------------------------------------------------------------------- /brands/hul/ratings/ratings_030719.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/hul/ratings/ratings_030719.csv -------------------------------------------------------------------------------- /brands/hul/ratings/ratings_050719.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/hul/ratings/ratings_050719.csv -------------------------------------------------------------------------------- /brands/hul/ratings/ratings_080719.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/hul/ratings/ratings_080719.csv -------------------------------------------------------------------------------- /brands/hul/ratings/ratings_090719.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/hul/ratings/ratings_090719.csv -------------------------------------------------------------------------------- /brands/hul/ratings/ratings_200619.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/hul/ratings/ratings_200619.csv -------------------------------------------------------------------------------- /brands/p&g/links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/p&g/links.csv -------------------------------------------------------------------------------- /brands/p&g/p&g.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/p&g/p&g.csv -------------------------------------------------------------------------------- /brands/p&g/ratings/ratings_050719.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/p&g/ratings/ratings_050719.csv -------------------------------------------------------------------------------- /brands/p&g/ratings/ratings_080719.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/p&g/ratings/ratings_080719.csv -------------------------------------------------------------------------------- /brands/p&g/ratings/ratings_090719.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/brands/p&g/ratings/ratings_090719.csv -------------------------------------------------------------------------------- /flipkart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/flipkart.py -------------------------------------------------------------------------------- /preliminary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/preliminary.ipynb -------------------------------------------------------------------------------- /reports/UCG-Report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/reports/UCG-Report.csv -------------------------------------------------------------------------------- /reports/report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/reports/report.csv -------------------------------------------------------------------------------- /reports/top-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepShiz/NPS-Correlation/HEAD/reports/top-100.txt --------------------------------------------------------------------------------