Generate a profile report for a Polars DataFrame
Project description
polars-profiling
Profile your Polars DataFrames with a single line of code.
polars-profiling generates a rich, interactive HTML exploratory-data-analysis
report from a Polars DataFrame. It is a fork of
ydata-profiling (formerly
pandas-profiling) rebuilt to run exclusively on Polars — pandas, Spark,
and visions have been removed entirely, and every statistic is computed
natively with Polars expressions.
For each column you get type detection, descriptive statistics, quantiles, histograms, common/extreme values, correlations, missing-value diagnostics, interactions, duplicate-row detection, samples, and automatic data-quality alerts.
Why Polars-only?
| ydata-profiling | polars-profiling | |
|---|---|---|
| Input | pandas / Spark | Polars |
| Compute engine | pandas / numpy | native Polars expressions |
| Heavy dependencies | pandas, visions, seaborn, statsmodels, phik | none of them |
| Telemetry | phones home | none |
The full data path — value counts, distinct/unique, numeric statistics,
quantiles, histograms, correlations, missing-data nullity, duplicates and
sampling — runs through Polars. There is no .to_pandas() anywhere in the
pipeline.
Installation
pip install polars-profiling
Quickstart
import polars as pl
from polars_profiling import ProfileReport
df = pl.read_csv("titanic.csv")
profile = ProfileReport(df, title="Titanic Dataset", explorative=True)
profile.to_file("titanic_report.html")
Or use the DataFrame accessor:
df.profile_report().to_file("report.html")
In a Jupyter notebook
profile = ProfileReport(df, title="Profiling Report")
profile.to_notebook_iframe()
Get the raw statistics (no HTML)
description = ProfileReport(df, progress_bar=False).get_description()
print(description.table["types"]) # {'Numeric': 7, 'Text': 3, 'Categorical': 2}
print(description.variables["Age"]["mean"])
Features
- Type inference — Numeric, Categorical, Boolean, DateTime, Text (with configurable, content-based inference for string columns).
- Univariate statistics — count, distinct/unique, missing, mean, std, variance, min/max, quantiles, MAD, skewness, kurtosis, monotonicity, zeros, negatives, infinities.
- Histograms & frequency tables, common and extreme values.
- Correlations —
auto, Pearson, Spearman, Kendall and Cramér's V, computed natively. - Missing-value diagnostics — count bar, nullity matrix and correlation heatmap.
- Interactions — pairwise scatter plots between continuous variables.
- Duplicate-row detection and head/tail/random samples.
- Data-quality alerts — high correlation, high cardinality, imbalance, missing values, zeros, uniqueness, constants and more.
- Report comparison — diff two datasets side by side.
Configuration
ProfileReport accepts a familiar set of keyword arguments. A few common ones:
ProfileReport(
df,
title="My Report",
minimal=True, # faster, fewer computations
explorative=True, # enable extra analyses
correlations={"pearson": {"calculate": True}},
missing_diagrams={"heatmap": False},
samples={"head": 5, "tail": 5},
type_schema={"col": "categorical"}, # override inferred types
progress_bar=False,
)
Comparing two reports
from polars_profiling import compare
report_a = ProfileReport(df_a, title="A")
report_b = ProfileReport(df_b, title="B")
compare([report_a, report_b]).to_file("comparison.html")
Differences from ydata-profiling
- Input must be a Polars
DataFrame(pandas/Spark are not accepted). phi_kcorrelation is not available (it is a pandas-only package); the other correlation methods are reimplemented natively.- The Great Expectations export converts to pandas at that single boundary only
(and requires the optional
great_expectationspackage, which itself depends on pandas). - No telemetry is collected or sent.
License
MIT — see LICENSE. This project builds on the work of ydata-profiling and pandas-profiling.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file polars_profiling-0.2.0.tar.gz.
File metadata
- Download URL: polars_profiling-0.2.0.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a5c8cbb560290edd1495d101dc88f3a91674f9cb45ea91ba3983452b8fb0536
|
|
| MD5 |
89f06aff8d71095a9128c4e3bb0d8bd9
|
|
| BLAKE2b-256 |
e22db67c8c07fd6aeb35d6156fcf7bd649ad6fc9f242277713cc969767c64291
|
Provenance
The following attestation bundles were made for polars_profiling-0.2.0.tar.gz:
Publisher:
publish-pypi.yml on pytoned/polars-profiling
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polars_profiling-0.2.0.tar.gz -
Subject digest:
0a5c8cbb560290edd1495d101dc88f3a91674f9cb45ea91ba3983452b8fb0536 - Sigstore transparency entry: 1937912834
- Sigstore integration time:
-
Permalink:
pytoned/polars-profiling@2fcdc87cce1fe2dd0ca20f64950443a18e7141a8 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/pytoned
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@2fcdc87cce1fe2dd0ca20f64950443a18e7141a8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file polars_profiling-0.2.0-py2.py3-none-any.whl.
File metadata
- Download URL: polars_profiling-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 366.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96eadc9a225957abd03c59d9f91d7b6cacebaaa95be621047d150272055a1eb0
|
|
| MD5 |
bd9380c6bbcead55ccd4f9feae07a191
|
|
| BLAKE2b-256 |
39eed4c9c352dd7a274428eb035afc24352bae8ce9f6ab2a47b3794e556c3f8a
|
Provenance
The following attestation bundles were made for polars_profiling-0.2.0-py2.py3-none-any.whl:
Publisher:
publish-pypi.yml on pytoned/polars-profiling
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polars_profiling-0.2.0-py2.py3-none-any.whl -
Subject digest:
96eadc9a225957abd03c59d9f91d7b6cacebaaa95be621047d150272055a1eb0 - Sigstore transparency entry: 1937913012
- Sigstore integration time:
-
Permalink:
pytoned/polars-profiling@2fcdc87cce1fe2dd0ca20f64950443a18e7141a8 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/pytoned
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@2fcdc87cce1fe2dd0ca20f64950443a18e7141a8 -
Trigger Event:
push
-
Statement type: