Sharing 🐍 Python best practices, 📊 data science, ⚡tips & 🛠️ workflows (IDE, CI/CD, debugging).
🎯 Level up in data dev! 🚀
📺 YouTube: youtube.com/@z2d_io
Learn how to create & modify columns the Polars way using df.with_columns([...]).
▶️ Watch: www.youtube.com/watch?v=4jQO...
#Polars #Python #DataScience
Learn how to create & modify columns the Polars way using df.with_columns([...]).
▶️ Watch: www.youtube.com/watch?v=4jQO...
#Polars #Python #DataScience
... the Polars way:
🧩 pl.col() – expressive columns
🧮 .select() – choose/transform columns
🔍 .filter() – keep matching rows
Chaining:
df.filter(pl.col("city")=="Austin").select("drink","price")
▶️ Watch: youtu.be/gemLXW-hkJM
#Polars #Python #DataScience
... the Polars way:
🧩 pl.col() – expressive columns
🧮 .select() – choose/transform columns
🔍 .filter() – keep matching rows
Chaining:
df.filter(pl.col("city")=="Austin").select("drink","price")
▶️ Watch: youtu.be/gemLXW-hkJM
#Polars #Python #DataScience