Skip to main content

polarstation

Tidy helper functions for Polars, inspired by the R tidyverse.

Installation

pip install polarstation

or with uv:

uv add polarstation

Quick start

import polars as pl
import polarstation   # registers extension functions for polars

df = pl.DataFrame({
    "animal": ["dog", "dog", None, "bird", "cow" , "bird", "bird"],
    "weight": [12.2, 8.1, 7.5, 0.5, 460, 0.4, None],
}).ps.with_columns(
    pl.col("animal").ps_enum.make().ps_enum.reorder(by='weight')
)
print(df)
print(df['animal'].dtype)
shape: (7, 2)
┌────────┬────────┐
│ animal ┆ weight │
│ ---    ┆ ---    │
│ enum   ┆ f64    │
╞════════╪════════╡
│ dog    ┆ 12.2   │
│ dog    ┆ 8.1    │
│ null   ┆ 7.5    │
│ bird   ┆ 0.5    │
│ cow    ┆ 460.0  │
│ bird   ┆ 0.4    │
│ bird   ┆ null   │
└────────┴────────┘
Enum(categories=['bird', 'dog', 'cow'])

ps.with_columns is a drop-in replacement for with_columns from polars that can handle some additional use cases like functions that need to peek at the full data for evaluation. It works efficiently on both DataFrame and LazyFrame.

Details

The key idea is FrameExpr — an expression that needs a peek at the data (schema or a small aggregation) before it resolves into a regular Polars expression. This unlocks operations like deriving Enum categories from the data, lumping rare levels, or reordering factor levels by a summary statistic, while keeping the rest of your pipeline lazy.

How FrameExpr stays efficient

ps.with_columns resolves each FrameExpr in two phases. First it runs a small aggregation (e.g. unique().sort() to discover categories) against the current lazy plan — so any preceding .filter() or .select() is already embedded and Polars’ predicate/projection pushdown keeps the peek cheap. Then it uses the result to build a concrete pl.Expr (e.g. .cast(pl.Enum(["a", "b", "c"]))) that goes back into the lazy plan and executes normally.

# Only the filtered rows are scanned for category discovery;
# the cast itself remains lazy.
lf = pl.scan_parquet("events.parquet")
result = (
    lf.filter(pl.col("country") == "DE")
      .ps.with_columns(pl.col("status").ps_enum.make())
      .filter(pl.col("status") == "active")
      .collect()
)

See the FrameExpr docstring for the full explanation, including when the peek is larger and notes on parallel evaluation.

Calling arbitrary functions

Sometimes there’s no Polars expression for what you need. ps.F, ps.B, and ps.E wrap arbitrary functions (numpy, scipy, plain Python, …) so they can be called directly on expressions, in place of hand-rolled pl.struct(...).map_batches(...) /map_elements(...).

ps.F is the right default whenever a function needs to see the complete input, not a sample or a batch — clustering is the clearest example. scipy’s fclusterdata takes every point at once and assigns cluster labels; there’s no Polars equivalent, and critically, it cannot be computed correctly on a slice of the data. Only the pl.Expr argument (pl.concat_arr("x", "y")) is resolved against the data — t and criterion are forwarded to fclusterdata unchanged:

import numpy as np
import polars as pl
import polarstation as ps
from scipy.cluster.hierarchy import fclusterdata

df = pl.DataFrame({
    "region": ["A", "A", "A", "A", "B", "B", "B", "B"],
    "x": [0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0],
    "y": [0.0, 0.2, 9.8, 10.0, 0.0, 0.2, 9.8, 10.0],
})

df.ps.with_columns(
    cluster=ps.F(fclusterdata)(pl.concat_arr("x", "y"), t=2, criterion="maxclust")
)
shape: (8, 4)
┌────────┬───────┬──────┬─────────┐
│ region ┆ x     ┆ y    ┆ cluster │
│ ---    ┆ ---   ┆ ---  ┆ ---     │
│ str    ┆ f64   ┆ f64  ┆ i32     │
╞════════╪═══════╪══════╪═════════╡
│ A      ┆ 0.0   ┆ 0.0  ┆ 1       │
│ A      ┆ 0.0   ┆ 0.2  ┆ 1       │
│ A      ┆ 0.0   ┆ 9.8  ┆ 1       │
│ A      ┆ 0.0   ┆ 10.0 ┆ 1       │
│ B      ┆ 100.0 ┆ 0.0  ┆ 2       │
│ B      ┆ 100.0 ┆ 0.2  ┆ 2       │
│ B      ┆ 100.0 ┆ 9.8  ┆ 2       │
│ B      ┆ 100.0 ┆ 10.0 ┆ 2       │
└────────┴───────┴──────┴─────────┘

ps.B is the right choice when fn genuinely doesn’t care about batching (e.g., np.logaddexp (the numerically-stable way to compute log(exp(a) + exp(b)) for which there is no equivalent in polars).

df2 = pl.DataFrame({"log_p": [-0.5, -3.0, -10.0], "log_q": [-1.2, -0.4, -9.5]})
df2.lazy().with_columns(
    combined=ps.B(np.logaddexp)(pl.col("log_p"), pl.col("log_q"))
).collect()
shape: (3, 3)
┌───────┬───────┬───────────┐
│ log_p ┆ log_q ┆ combined  │
│ ---   ┆ ---   ┆ ---       │
│ f64   ┆ f64   ┆ f64       │
╞═══════╪═══════╪═══════════╡
│ -0.5  ┆ -1.2  ┆ -0.096814 │
│ -3.0  ┆ -0.4  ┆ -0.328355 │
│ -10.0 ┆ -9.5  ┆ -9.025923 │
└───────┴───────┴───────────┘

ps.E is for functions that only accept scalars, not arrays at all — like a hand-rolled edit distance, useful for catching typos against a reference list:

def levenshtein(a, b):
    if len(a) < len(b):
        a, b = b, a
    prev = list(range(len(b) + 1))
    for i, ca in enumerate(a, 1):
        curr = [i] + [0] * len(b)
        for j, cb in enumerate(b, 1):
            curr[j] = min(prev[j] + 1, curr[j - 1] + 1, prev[j - 1] + (ca != cb))
        prev = curr
    return prev[-1]

df3 = pl.DataFrame({"typed": ["aplpe", "bananna", "orange"], "correct": ["apple", "banana", "orange"]})
df3.with_columns(dist=ps.E(levenshtein)(pl.col("typed"), pl.col("correct")))
shape: (3, 3)
┌─────────┬─────────┬──────┐
│ typed   ┆ correct ┆ dist │
│ ---     ┆ ---     ┆ ---  │
│ str     ┆ str     ┆ i64  │
╞═════════╪═════════╪══════╡
│ aplpe   ┆ apple   ┆ 2    │
│ bananna ┆ banana  ┆ 1    │
│ orange  ┆ orange  ┆ 0    │
└─────────┴─────────┴──────┘

Dev Notes

To re-render the README.md run

quarto render README.qmd --to gfm

To build the documentation run:

uv run quarto render

and then in a separate terminal

uv run quarto preview

To update the documentation at https://const-ae.github.io/polarstation/ `uv run quarto publish gh-pages

To upload to pypi run

uv build
uv publish

Acknowledgements

This package stands on the shoulders of several excellent projects:

  • The tidyverse team for establishing the tidy data philosophy and the vocabulary that shapes this package’s design.
  • Hadley Wickham and the forcats authors for the factor-manipulation functions that directly inspired the ps_enum namespace.
  • David Hugh-Jones for santoku, which inspired the ps_chop functions.
  • Allison Horst, Alison Hill, and Kristen Gorman for the palmerpenguins dataset used in the examples and walkthrough.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

polarstation-0.2.2.tar.gz (32.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

polarstation-0.2.2-py3-none-any.whl (36.8 kB view details)

Uploaded Python 3

File details

Details for the file polarstation-0.2.2.tar.gz.

File metadata

  • Download URL: polarstation-0.2.2.tar.gz
  • Upload date:
  • Size: 32.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for polarstation-0.2.2.tar.gz
Algorithm Hash digest
SHA256 a26edcf6ecd7b365da54e380953776d957bee911d0ecc8881c72dd8a05766ab8
MD5 9da89e9372b2c832e7f0be48136ed0d5
BLAKE2b-256 5499cb9399d1499eba2e25649bc601d0f4eb9612b49faf12d690efcd807ec473

See more details on using hashes here.

File details

Details for the file polarstation-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: polarstation-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 36.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for polarstation-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 388bd6cb6545968032a71bb2496b7050c31fad8fe20be4b47cb001b9379962d9
MD5 8d840ff3eeafe4e27054c3387412074a
BLAKE2b-256 0a83789a3c7d48aedfd5443e7929dd1ac902fb4da54962d6d59ac2d519e836b7

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.2 This release

2 files

0.2.1

2 files

0.2.0

2 files

0.1.5

2 files

0.1.4

1 file

0.1.3

1 file

0.1.2

1 file

0.1.1

1 file

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page