Python_Programming_Data_Science

所属分类:大数据
开发工具:Jupyter Notebook
文件大小:0KB
下载次数:0
上传日期:2023-09-18 00:06:08
上 传 者sh-1993
说明:  Python编程和数据科学项目,
(Python Programming and Data Science projects,)

文件列表:
Data_Science_Bootcamp/ (0, 2023-09-18)
Data_Science_Bootcamp/.DS_Store (8196, 2023-09-18)
Data_Science_Bootcamp/1.Simple Linear Regression/ (0, 2023-09-18)
Data_Science_Bootcamp/1.Simple Linear Regression/.DS_Store (6148, 2023-09-18)
Data_Science_Bootcamp/1.Simple Linear Regression/.ipynb_checkpoints/ (0, 2023-09-18)
Data_Science_Bootcamp/1.Simple Linear Regression/.ipynb_checkpoints/SLR-checkpoint.ipynb (175691, 2023-09-18)
Data_Science_Bootcamp/1.Simple Linear Regression/Data/ (0, 2023-09-18)
Data_Science_Bootcamp/1.Simple Linear Regression/Data/1.01.+Simple+linear+regression.csv (922, 2023-09-18)
Data_Science_Bootcamp/1.Simple Linear Regression/SLR.ipynb (175691, 2023-09-18)
Data_Science_Bootcamp/2.Multiple Linear Regression_Dummies/ (0, 2023-09-18)
Data_Science_Bootcamp/2.Multiple Linear Regression_Dummies/.DS_Store (6148, 2023-09-18)
Data_Science_Bootcamp/2.Multiple Linear Regression_Dummies/.ipynb_checkpoints/ (0, 2023-09-18)
Data_Science_Bootcamp/2.Multiple Linear Regression_Dummies/.ipynb_checkpoints/MLR_Dummies-checkpoint.ipynb (166586, 2023-09-18)
Data_Science_Bootcamp/2.Multiple Linear Regression_Dummies/Data/ (0, 2023-09-18)
Data_Science_Bootcamp/2.Multiple Linear Regression_Dummies/Data/.DS_Store (6148, 2023-09-18)
Data_Science_Bootcamp/2.Multiple Linear Regression_Dummies/Data/1.03. Dummies.csv (1221, 2023-09-18)
Data_Science_Bootcamp/2.Multiple Linear Regression_Dummies/MLR_Dummies.ipynb (166586, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/ (0, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/.DS_Store (6148, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/.ipynb_checkpoints/ (0, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/.ipynb_checkpoints/MLR-checkpoint.ipynb (50930, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/.ipynb_checkpoints/MLR1-checkpoint.ipynb (51968, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/.ipynb_checkpoints/MLR_Sklearn-checkpoint.ipynb (45177, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/.ipynb_checkpoints/TRAIN_TEST_SPLIT-checkpoint.ipynb (23989, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/Data/ (0, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/Data/.DS_Store (6148, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/Data/1.02. Multiple linear regression.csv (1114, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/MLR.ipynb (50930, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/MLR_Sklearn.ipynb (45177, 2023-09-18)
Data_Science_Bootcamp/3.Multiple Linear Regression/TRAIN_TEST_SPLIT.ipynb (23989, 2023-09-18)
Data_Science_Bootcamp/4.Car Sales Project/ (0, 2023-09-18)
Data_Science_Bootcamp/4.Car Sales Project/.DS_Store (6148, 2023-09-18)
Data_Science_Bootcamp/4.Car Sales Project/.ipynb_checkpoints/ (0, 2023-09-18)
Data_Science_Bootcamp/4.Car Sales Project/.ipynb_checkpoints/CAR_SALES_REGRESSION-checkpoint.ipynb (986947, 2023-09-18)
Data_Science_Bootcamp/4.Car Sales Project/CAR_SALES_REGRESSION.ipynb (986947, 2023-09-18)
Data_Science_Bootcamp/4.Car Sales Project/Data/ (0, 2023-09-18)
Data_Science_Bootcamp/4.Car Sales Project/Data/1.04. Car_Sales.csv (225102, 2023-09-18)
Data_Science_Bootcamp/5.Absenteeism Project/ (0, 2023-09-18)
Data_Science_Bootcamp/5.Absenteeism Project/.DS_Store (6148, 2023-09-18)
Data_Science_Bootcamp/5.Absenteeism Project/.ipynb_checkpoints/ (0, 2023-09-18)
... ...

# Python Programming and Data Science projects Compilation of Python programming and data analysis projects and challenges where I practice Python programming ## [Python Programming course at the University of Washington](https://github.com/ranjanadobal/Python_Programming_Data_Science/tree/main/Python_UW) This is a collection of Python programming and data analysis problems that I have practised in my Master of Science as part of the Python Programming course at the University of Washington: [Python Programming at UW](https://github.com/TiesdeKok/acctg-579B/tree/master) ## [The Data Science Course: Complete Data Science Bootcamp](https://github.com/ranjanadobal/Python_Programming_Data_Science/tree/main/Data_Science_Bootcamp) This is a collection of data science and machine learning projects that I have practised as part of the Complete Data Science Bootcamp from 365 Careers on Udemy: [The Data Science Course: Complete Data Science Bootcamp](https://www.udemy.com/course/the-data-science-course-complete-data-science-bootcamp/) 1. [Logistic Regression to predict Absenteeism at Work using Machine Learning](https://github.com/ranjanadobal/Python_Programming_Data_Science/tree/main/Data_Science_Bootcamp/5.Absenteeism%20Project): Developed a logistic regression machine learning model using scikit-learn to predict excessive absenteeism at work based on health reasons, transportation expenses, family size, education level, and achieved a test accuracy of 74%. Conducted comprehensive data analysis, including creating dummies to categorize 28 absence reasons, extracting day and month from dates, and transforming numerical features with a custom scaler. Identified key predictors such as poisoning, diseases, transportation expenses, and household size. Created a module with class and methods to deploy the model on new observations to generate probability and predictions. Developed pattern visualizations in [Tableau](https://public.tableau.com/app/profile/ranjana.dobal) for age, absence reasons, transportation expenses and household size. 2. [Log-linear Regression to predict Used Car prices using Machine Learning](https://github.com/ranjanadobal/Python_Programming_Data_Science/tree/main/Data_Science_Bootcamp/4.Car%20Sales%20Project): Developed a log-linear regression machine learning model using scikit-learn to predict used car prices based on specifications such as brand, mileage, engine volume, and year of production, achieving an Adj R squared of 75%. Conducted comprehensive data analysis, including descriptive statistics, creating dummies for categorical data such as brand, body, engine type, and registration, handling missing values, exploring probability distribution functions, detecting anomalies, handling outliers, and transforming inputs with StandardScaler. Also checked Ordinary Least Squares assumptions of linearity, no endogeneity, normality, homoscedasticity, no autocorrelation for continuous variables via matplotlib and scatter plots, and no multicollinearity by removing high-variance inflation factor variables. Developed scatter plots to visualize residuals between targets and predictions, created summary table for weights and bias, calculated percentage differences between targets and predictions and identified key predictors such as mileage and engine volume.

近期下载者

相关文件


收藏者