Discover / Data & Research

Pandas Data Analysis Library

by pandas-devPython

Flexible and powerful data analysis and manipulation library for Python.

Toolstable

Maturity: stable because 16y old, v3.0.5 released 12d ago. Derived from release and commit history, not a rating.

Stars
49k
Forks
20k
Downloads / mo
736.1M
Last commit
2026-08-02
License
BSD-3-Clause
Open issues
2.9k

Market and trust evidence

Edition not yet matched

No exact skills.sh identity match is available for this repository. Repository adoption and freshness remain visible above; install momentum is not inferred.

Trust analysis is a screening signal, not a security warranty. Read the ranking and trust methodology.

In practice

Written by AI from this repository’s README · high confidence

Working with tabular, labeled or time series data in plain Python means writing alignment, reshaping and I/O code by hand.

Use it when

When you need DataFrame operations such as group by, merging, reshaping and time series handling inside Python.

Not the right pick when

The README describes it as a high level in memory toolkit, so out of core or distributed processing is outside what it claims.

Capabilities

  • easy handling of missing data represented as NaN, NA or NaT
  • automatic and explicit data alignment across objects
  • group by split apply combine operations
  • merging, joining, reshaping and pivoting of data sets
  • time series date range generation and moving window statistics
  • I/O tools for flat files, Excel, databases and HDF5

Cost: Free and open source

Install

Derived from the published package name in the repository, not from a model.

Video walkthroughs

Third-party YouTube uploads matched to this tool by title, channel and repository name on 2026-08-03. Not made, reviewed or endorsed by SkillPilot. View counts and publish months are as of the match date and the month is approximate. Nothing loads from YouTube until you press play.

What the repository ships

Has docsCI configured

Detected from the actual files in the repository root.

Latest release v3.0.5

Published 2026-07-22

We are pleased to announce the release of pandas 3.0.5.

This is a patch release in the 3.0.x series and includes some regression fixes and bug fixes. We recommend that all users of the 3.0.x series upgrade to this version.

See the full whatsnew for a list of all the changes.

Pandas 3.0 supports Python 3.11 and higher.

The release can be installed from PyPI:

python -m pip install --upgrade pandas==3.0.*

Or from conda-forge

conda install -c conda-forge pandas=3.0

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Tags

README

<picture align="center">

<source media="(prefers-color-scheme: dark)" srcset="https://pandas.pydata.org/static/img/pandas_white.svg">

<img alt="Pandas Logo" src="https://pandas.pydata.org/static/img/pandas.svg">

</picture>


pandas: A Powerful Python Data Analysis Toolkit

| | |

| --- | --- |

| Testing | CI - Test Coverage |

| Package | PyPI Latest Release PyPI Downloads Conda Latest Release Conda Downloads |

| Meta | Powered by NumFOCUS DOI License - BSD 3-Clause Slack LFX Health Score |

What is it?

pandas is a Python package that provides fast, flexible, and expressive data

structures designed to make working with "relational" or "labeled" data both

easy and intuitive. It aims to be the fundamental high-level building block for

doing practical, real-world data analysis in Python. Additionally, it has

the broader goal of becoming **the most powerful and flexible open-source data

analysis/manipulation tool available in any language**. It is already well on

its way towards this goal.

Table of Contents

  • Main Features
  • Where to get it
  • Dependencies
  • Installation from sources
  • License
  • Documentation
  • Background
  • Getting Help
  • Discussion and Development
  • Contributing to pandas

Main Features

Here are just a few of the things that pandas does well:

  • Easy handling of [missing data][missing-data] (represented as

NaN, NA, or NaT) in floating point as well as non-floating point data

  • Size mutability: columns can be [**inserted and

deleted**][insertion-deletion] from DataFrame and higher dimensional

objects

  • Automatic and explicit [data alignment][alignment]: objects can

be explicitly aligned to a set of labels, or the user can simply

ignore the labels and let Series, DataFrame, etc. automatically

align the data for you in computations

  • Powerful, flexible [group by][groupby] functionality to perform

split-apply-combine operations on data sets, for both aggregating

and transforming data

  • Make it [easy to convert][conversion] ragged,

differently-indexed data in other Python and NumPy data structures

into DataFrame objects

  • Intelligent label-based [slicing][slicing], [**fancy

indexing][fancy-indexing], and [subsetting**][subsetting] of

large data sets

  • Intuitive [merging][merging] and [joining][joining] data

sets

  • Flexible [reshaping][reshape] and [pivoting][pivot-table] of

data sets

  • [Hierarchical][mi] labeling of axes (possible to have multiple

labels per tick)

  • Robust I/O tools for loading data from [flat files][flat-files]

(CSV and delimited), [Excel files][excel], [databases][db],

and saving/loading data from the ultrafast [HDF5 format][hdfstore]

  • [Time series][timeseries]-specific functionality: date range

generation and frequency conversion, moving window statistics,

date shifting and lagging

[missing-data]: https://pandas.pydata.org/pandas-docs/stable/user_guide/missing_data.html

[insertion-deletion]: https://pandas.pydata.org/pandas-docs/stable/user_guide/dsintro.html#column-selection-addition-deletion

[alignment]: https://pandas.pydata.org/pandas-docs/stable/user_guide/dsintro.html?highlight=alignment#intro-to-data-structures

[groupby]: https://pandas.pydata.org/pandas-docs/stable/user_guide/groupby.html#group-by-split-apply-combine

[conversion]: https://pandas.pydata.org/pandas-docs/stable/user_guide/dsintro.html#dataframe

[slicing]: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#slicing-ranges

[fancy-indexing]: https://pandas.pydata.org/pandas-docs/stable/user_guide/advanced.html#advanced

[subsetting]: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#boolean-indexing

[merging]: https://pandas.pydata.org/pandas-docs/stable/user_guide/merging.html#database-style-dataframe-or-named-series-joining-merging

[joining]: https://pandas.pydata.org/pandas-docs/stable/user_guide/merging.html#joining-on-index

[reshape]: https://pandas.pydata.org/pandas-docs/stable/user_guide/reshaping.html

[pivot-table]: https://pandas.pydata.org/pandas-docs/stable/user_guide/reshaping.html

[mi]: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#hierarchical-indexing-multiindex

[flat-files]: https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html#csv-text-files

[excel]: https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html#excel-files

[db]: https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html#sql-queries

[hdfstore]: https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html#hdf5-pytables

[timeseries]: https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#time-series-date-functionality

Where to get it

The source code is currently hosted on GitHub at:

https://github.com/pandas-dev/pandas

Binary installers for the latest released version are available at the [Python

Package Index (PyPI)](https://pypi.org/project/pandas) and on Conda.


# conda
conda install -c conda-forge pandas

# or PyPI
pip install pandas

The list of changes to pandas between each release can be found

here. For full

details, see the commit logs at https://github.com/pandas-dev/pandas.

Dependencies

See the full installation instructions for minimum supported versions of required, recommended and optional dependencies.

Installation from sources

To install pandas from source you need Cython in addition to the normal

dependencies above. Cython can be installed from PyPI:


pip install cython

In the pandas directory (same one where you found this file after

cloning the git repo), execute:


pip install .

or for installing in development mode:


python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true

See the full instructions for installing from source.

License

BSD 3

Documentation

The official documentation is hosted on PyData.org.

Background

Work on `pandas` started at AQR (a quantitative hedge fund) in 2008 and

has been under active development since then.

Getting Help

For usage questions, the best place to go to is Stack Overflow.

Further, general questions and discussions can also take place on the pydata mailing list.

Discussion and Development

Most development discussions take place on GitHub in this repo, via the GitHub issue tracker.

Further, the pandas-dev mailing list can also be used for specialized discussions or design issues, and a Slack channel is available for quick development related questions.

There are also frequent community meetings for project maintainers open to the community as well as monthly new contributor meetings to help support new contributors.

Additional information on the communication channels can be found on the contributor community page.

Contributing to pandas

Open Source Helpers

All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.

A detailed overview on how to contribute can be found in the contributing guide.

You can also triage issues which may include reproducing bug reports, or asking for vital information such as version numbers or reproduction instructions. If you would like to start triaging issues, one easy way to get started is to subscribe to pandas on CodeTriage.

Or maybe through using pandas you have an idea of your own or are looking for something in the documentation and thinking ‘this can be improved’... you can do something about it!

Feel free to ask questions on the mailing list or on Slack.

As contributors and maintainers to this project, you are expected to abide by pandas' code of conduct. More information can be found at: Contributor Code of Conduct

<hr>

Go to Top

Related tools