Hi Reader,
You might have noticed that I start each Tuesday Tip with a link of the week and end with a humorous/interesting P.S.
If you ever want to nominate a link for either category, please feel free to share it with me! 💌
Driverless cars may already be safer than human drivers
This is not only a fascinating read, but also an excellent case study in the challenges of real-world data gathering and data analysis!
Recently, a reader asked me how to get “un-stuck” with his Data Science project, given that he’s facing the following challenges:
Great questions!
What he needs is “feature selection”, which is the process of removing uninformative features from your model. These are features that are NOT helping your model to make better predictions. In other words, uninformative features are adding “noise” to your model, rather than “signal”. 📡
Here’s how your model can benefit from feature selection:
There are many valid methods for feature selection, including human intuition, domain knowledge, and data exploration. But for the moment, I want to focus on automated feature selection that can be included in a scikit-learn Pipeline. ⚡
Within the category of automated feature selection, there are subcategories such as intrinsic methods (like L1 regularization) and wrapper methods (like recursive feature elimination), though the most flexible and computationally efficient methods are in the subcategory of filter methods (like SelectPercentile).
As you might guess, automated feature selection is a vast and complex topic! However, I’ll give you a quick introduction to one of these categories so that you can get started today! 🚀
A filter method starts by scoring every single feature to quantify its potential relationship with the target column. Then, the features are ranked by their scores, and only the top scoring features are passed to the model. 🏅
Thus, they’re called filter methods because they filter out what they believe to be the least informative features and then pass on the more informative features to the model.
Filter methods vary in terms of the processes they use to score the features. For example:
In each case, you have to select how many features are passed to the prediction model by setting a percentile (for SelectPercentile) or a scoring threshold (for SelectFromModel). And of course, these parameters should be tuned using a grid search! 🔎
Despite the conceptual complexity, it’s surprisingly simple to add automated feature selection to a scikit-learn Pipeline. I’ll show you how:
🔗 Here’s my 2-minute video that walks you through it (YouTube)
🔗 Here’s my code from the video (Jupyter notebook)
Feature selection is a huge topic, but I cover it in detail in Chapter 13 of my upcoming course:
🔗 Master Machine Learning with scikit-learn (Data School course)
I’ve been working on this course for YEARS, and I’m planning to release the first 16 chapters by the end of 2023! Stay tuned for the launch announcement... 👂
In the meantime, my top recommendation for learning about feature selection is this comprehensive book:
🔗 Feature Engineering and Selection (free online book)
If you enjoyed this week’s tip, please forward it to a friend! Takes only a few seconds, and it really helps me grow the newsletter! 🙌
See you next Tuesday!
- Kevin
P.S. Frequency (calculations)
Did someone awesome forward you this email? Sign up here to receive Data Science tips every week!
Join 25,000+ aspiring Data Scientists and receive Python & Data Science tips every Tuesday!
Hi Reader, Next week, I’ll be offering a Black Friday sale on ALL of my courses. I’ll send you the details this Thursday! 🚨 👉 Tip #50: What is a "method" in Python? In Python, a method is a function that can be used on an object because of the object's type. For example, if you create a Python list, the "append" method can be used on that list. All lists have an "append" method simply because they are lists: If you create a Python string, the "upper" method can be used on that string simply...
Hi Reader, I appreciate everyone who has emailed to check on me and my family post-Helene! It has been more than 6 weeks since the hurricane, and most homes in Asheville (mine included) still don't have clean, running water. We're hopeful that water service will return within the next month. In the meantime, we're grateful for all of the aid agencies providing free bottled water, free meals, places to shower, and so much more. ❤️ Thanks for allowing me to share a bit of my personal life with...
Hi Reader, Regardless of whether you enrolled, thanks for sticking with me through the launch of my new course! 🚀 I've already started exploring topics for the next course... 😄 🔗 Link of the week git cheat sheet (PDF) A well-organized and highly readable cheat sheet from Julia Evans, the brilliant mind behind Wizard Zines! 👉 Tip #48: Three ways to set your environment variables in Python I was playing around with Mistral LLM this weekend (via LangChain in Python), and I needed to set an...