├── .gitattributes ├── .gitignore ├── Basic ├── House Price Regresion │ ├── Project 2 P1 House Price Regression.ipynb │ ├── Project 2 P2 House Price Regression.ipynb │ ├── data_description.txt │ ├── submission.csv │ ├── test.csv │ └── train.csv └── Iris dataset │ └── Iris_final.ipynb ├── Data Preprocessing, Cleaning & Transformation ├── 2012 FEC database │ └── fec_data.ipynb ├── BabyNames dataset │ └── baby_names_USA_dataset.ipynb ├── Diabetes Detection and Analysis │ ├── DiabetesDetection.ipynb │ └── data │ │ └── diabetes.csv ├── MovieLens Dataset │ └── movielens_dataset.ipynb ├── README.md ├── Stack Overflow survey analysis │ ├── Stack_Overflow_dev_type_survey.ipynb │ └── data │ │ ├── README_2019.txt │ │ ├── developer_survey_2019.zip │ │ └── so_survey_2019.pdf ├── USA_Bitly_dataset │ ├── bitly_data.ipynb │ └── bitly_usagov │ │ └── example.txt └── USDA food database │ └── USDA_food_database.ipynb └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/.gitignore -------------------------------------------------------------------------------- /Basic/House Price Regresion/Project 2 P1 House Price Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Basic/House Price Regresion/Project 2 P1 House Price Regression.ipynb -------------------------------------------------------------------------------- /Basic/House Price Regresion/Project 2 P2 House Price Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Basic/House Price Regresion/Project 2 P2 House Price Regression.ipynb -------------------------------------------------------------------------------- /Basic/House Price Regresion/data_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Basic/House Price Regresion/data_description.txt -------------------------------------------------------------------------------- /Basic/House Price Regresion/submission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Basic/House Price Regresion/submission.csv -------------------------------------------------------------------------------- /Basic/House Price Regresion/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Basic/House Price Regresion/test.csv -------------------------------------------------------------------------------- /Basic/House Price Regresion/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Basic/House Price Regresion/train.csv -------------------------------------------------------------------------------- /Basic/Iris dataset/Iris_final.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Basic/Iris dataset/Iris_final.ipynb -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/2012 FEC database/fec_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/2012 FEC database/fec_data.ipynb -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/BabyNames dataset/baby_names_USA_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/BabyNames dataset/baby_names_USA_dataset.ipynb -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/Diabetes Detection and Analysis/DiabetesDetection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/Diabetes Detection and Analysis/DiabetesDetection.ipynb -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/Diabetes Detection and Analysis/data/diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/Diabetes Detection and Analysis/data/diabetes.csv -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/MovieLens Dataset/movielens_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/MovieLens Dataset/movielens_dataset.ipynb -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/README.md -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/Stack Overflow survey analysis/Stack_Overflow_dev_type_survey.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/Stack Overflow survey analysis/Stack_Overflow_dev_type_survey.ipynb -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/Stack Overflow survey analysis/data/README_2019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/Stack Overflow survey analysis/data/README_2019.txt -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/Stack Overflow survey analysis/data/developer_survey_2019.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/Stack Overflow survey analysis/data/developer_survey_2019.zip -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/Stack Overflow survey analysis/data/so_survey_2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/Stack Overflow survey analysis/data/so_survey_2019.pdf -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/USA_Bitly_dataset/bitly_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/USA_Bitly_dataset/bitly_data.ipynb -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/USA_Bitly_dataset/bitly_usagov/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/USA_Bitly_dataset/bitly_usagov/example.txt -------------------------------------------------------------------------------- /Data Preprocessing, Cleaning & Transformation/USDA food database/USDA_food_database.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/Data Preprocessing, Cleaning & Transformation/USDA food database/USDA_food_database.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veb-101/Data-Science-Projects/HEAD/README.md --------------------------------------------------------------------------------