Hi Reader,
How's your January going? I've been playing a lot of Pokémon (the card game) with my 7 year-old... actually I'm the one who's always bugging him to play 😂
Are you a Pokémon fan? Meowscarada ex, anyone?
Introduction to Polars (Practical Business Python)
Have you heard of Polars? In short, it's a high-performance, memory-efficient alternative to pandas. If you're new to Polars, this blog post walks through basic Polars code and compares it to pandas.
When performing supervised Machine Learning, one of the keys to success is effective data preprocessing, which can require a lot of thought and planning.
However, there's a scikit-learn model which has two magical properties that significantly reduce your preprocessing burden. (And you've probably never even heard of it!)
It's called Histogram-Based Gradient Boosted Trees (HGBT). Here are its magical properties:
What exactly does that mean? I'll explain below! 👇
When your training data contains missing values, normally you have to impute all missing values as part of the data preprocessing step. (The only alternative is to drop samples or features with missing values, which can mean losing valuable training data!)
But if you use HGBT, it will handle the missing values without imputation or dropping any data!
Here's a minimal example from the scikit-learn documentation:
Here's a longer example from one of my videos.
Note: Decision Trees also support missing values as of scikit-learn 1.3, and Random Forests support missing values as of scikit-learn 1.4.
When your training data contains unordered categorical features, normally you have to one-hot encode them as part of the data preprocessing step.
But if you use HGBT, it will handle the categorical features without encoding!
Starting in scikit-learn 1.4, HGBT will also infer which features are categorical directly from the data types of a pandas DataFrame!
Here's an example from the scikit-learn documentation:
Here's a longer comparison of native categorical support versus one-hot encoding and ordinal encoding.
If you want to learn more HGBT, check out the scikit-learn user guide.
Or if you're new to scikit-learn, check out one of my FREE scikit-learn courses!
Did you like this week’s tip? Please send it to a friend or share this link on social. It really helps me out! 🙌
See you next Tuesday!
- Kevin
P.S. Microsoft Excel World Championship (with live commentary)
Did someone AWESOME forward you this email? Sign up here to receive Data Science tips every week!
Join 25,000+ intelligent readers and receive AI tips every Tuesday!
Hi Reader, Last week, I encouraged you to experiment with different LLMs, since there’s no one model that is superior across all use cases. Specifically, I suggested you try using Chatbot Arena, which allows you to chat with multiple models at once. It’s completely free, but has two significant disadvantages: Your chats are not private and may be used for research. It lacks the feature-rich interface provided by other LLMs. Today, I want to offer you a better method for experimenting with...
Hi Reader, Over the past 50 tips, I’ve touched on many different topics: Python, Jupyter, pandas, ML, data visualization, and so on. Going forward, I’m planning to focus mostly on Artificial Intelligence. I’m announcing this so you know what to expect, and I know what to deliver! 💌 I’ll also try to make the tips shorter, so that they're easier to digest on-the-go. Finally, I plan to include an “action item” each week, so that you can practice what you’re learning. I hope you like these...
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...