Book Image

Data Science Projects with Python

By : Barbora stetinova
Book Image

Data Science Projects with Python

By: Barbora stetinova

Overview of this book

Data Science Projects with Python is designed to give you practical guidance on industry-standard data analysis and machine learning tools in Python, with the help of realistic data. The course will help you understand how you can use pandas and Matplotlib to critically examine a dataset with summary statistics and graphs and extract the insights you seek to derive. You will continue to build on your knowledge as you learn how to prepare data and feed it to machine learning algorithms, such as regularized logistic regression and random forest, using the scikit-learn package. You’ll discover how to tune the algorithms to provide the best predictions on new and, unseen data. As you delve into later chapters, you’ll be able to understand the working and output of these algorithms and gain insight into not only the predictive capabilities of the models but also their reasons for making these predictions. The codes for this course can be downloaded from https://github.com/TrainingByPackt/Data-Science-Projects-with-Python-eLearning.
Table of Contents (6 chapters)
Chapter 3
Details of Logistic Regression and Feature Exploration
Content Locked
Section 4
Univariate Feature Selection: What It Does and Doesn't Do
In the earlier videos, we have learned techniques for going through features one by one to see whether they have predictive power. This is a good first step, and if you already have features that are very predictive of the outcome variable, you may not need to spend much more time considering features before modeling. However, there are drawbacks to univariate feature selection. It does not consider the interactions between features. For example, what if the credit default rate is very high specifically for people with a certain education level and a certain range of credit limit? Here are the topics that we will cover now: