Skip to Content
Python Polars: The Definitive Guide
book

Python Polars: The Definitive Guide

by Jeroen Janssens, Thijs Nieuwdorp
February 2025
Intermediate to advanced
504 pages
11h 31m
English
O'Reilly Media, Inc.
Content preview from Python Polars: The Definitive Guide

Chapter 9. Combining Expressions

Now that you understand the fundamentals of expressions and know various methods to continue them, it’s time to learn how to combine them.

Combining expressions is necessary whenever the Series you want to construct is based on more than one value or column. This happens to be the case more often than you might think: for example, when you want to compute the ratio between two Float columns, filter rows based on multiple conditions, or concatenate multiple String columns into one.

In fact, you’ve already combined expressions several times in the previous chapters. Let’s look at an example from Chapter 7 to refresh your memory:

fruit = pl.read_csv("data/fruit.csv")
fruit.filter(pl.col("is_round") & (pl.col("weight") > 1000))
shape: (2, 5)
┌────────────┬────────┬────────┬──────────┬────────┐
│ name       │ weight │ color  │ is_round │ origin │
│ ---        │ ---    │ ---    │ ---      │ ---    │
│ str        │ i64    │ str    │ bool     │ str    │
╞════════════╪════════╪════════╪══════════╪════════╡
│ Cantaloupe │ 2500   │ orange │ true     │ Africa │
│ Watermelon │ 5000   │ green  │ true     │ Africa │
└────────────┴────────┴────────┴──────────┴────────┘

This code combines, in two steps, two existing columns (is_round and weight), and one value (1000) into one expression. The df.filter() method then uses this expression to filter rows.

Because of how the parentheses are organized, the comparison greater than operator (>) combines the weight column and the value 1000. When the value is larger, it produces ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Effective Python: 125 Specific Ways to Write Better Python, 3rd Edition

Effective Python: 125 Specific Ways to Write Better Python, 3rd Edition

Brett Slatkin

Publisher Resources

ISBN: 9781098156077Errata Page