skillfed

pandas-summary

An extension to pandas describe function.

pandas-summary v0.2.0 115.4K downloads/30d#12,254 on PyPI534
Permissive license MIT Active released

What it is and what it does

pandas-summary is a lightweight extension to pandas' built-in describe() function that generates more detailed statistical summaries of DataFrames. It wraps pandas DataFrames to provide enhanced profiling and exploratory data analysis capabilities, useful when you need richer insights into your data's distribution, missing values, and other characteristics beyond what describe() offers by default.

The package depends on numpy and pandas for core functionality, plus datatile for additional data processing. With low install friction and a permissive MIT license, it's straightforward to add to existing data analysis workflows. However, given that the latest release was in 2021, you should verify compatibility with your current pandas version before relying on it for production work.

Use it for:

  • Generate quick statistical overviews of CSV or database exports before deeper analysis
  • Identify missing values and data quality issues in exploratory data analysis workflows
  • Compare summary statistics across multiple datasets during data cleaning phases
  • Create baseline profiling reports for machine learning feature engineering
  • Automate data inspection steps in Jupyter notebooks for rapid prototyping

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Extends pandas' describe() function to provide richer statistical summaries and data profiling for exploratory data analysis on tabular datasets.

Yes, if you're doing exploratory data analysis with pandas and want richer describe() output without heavy dependencies. The low install friction and permissive license make it a low-risk addition. However, verify compatibility with your pandas version first—the 2021 release date means it may lag behind current pandas APIs. Not essential if pandas' native describe() meets your needs.

Install

pandas-summary on PyPI

pip

pip install pandas-summary

uv

uv add pandas-summary

poetry

poetry add pandas-summary

Installing pandas-summary

Before you install

Low install friction with only three runtime dependencies (numpy, pandas, datatile). Package is actively maintained with recent commits, though the latest release was in 2021.

License in practice

MIT license permits unrestricted use, modification, and distribution in both open-source and commercial projects with minimal obligations.

Quickstart

pip install pandas-summary

import pandas as pd
from pandas_summary import DataFrameSummary

df = pd.read_csv('data.csv')
summary = DataFrameSummary(df)
print(summary.summary())

Verify before relying

  • Whether the package works with modern pandas versions (latest release was 2021)
  • What specific enhancements describe() receives beyond standard pandas functionality
  • Whether datatile dependency is actively maintained and compatible with current ecosystems

Package facts

License MIT (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 3 — datatile, numpy, pandas
Maintenance actively maintained — 1,723 days since the last release
Last repo commit
First released
Downloads 115,361/month — #12,254 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pandas_summary-0.2.0-py2.py3-none-any.whl

Keywords: pandas, data analysis, machine learning

Intended Audience :: Science/ResearchOperating System :: OS IndependentProgramming Language :: PythonTopic :: Scientific/Engineering

Tags

pandas data profilingpandas describe extensionexploratory data analysisstatistical summary pandasdata quality assessmentpandas data explorationquick data overview
data-profilingeda

More Scientific/Engineering packages