1
0
Fork 0
mirror of https://github.com/pandas-dev/pandas synced 2026-06-03 22:04:11 +00:00
No description
  • Python 94.5%
  • HTML 2.3%
  • C 1.8%
  • Csound 1.3%
Find a file
2026-06-03 13:52:27 -07:00
.github CI: Bump pixi to 0.69 (#65736) 2026-05-26 14:33:45 -04:00
asv_bench ASV: Run inplace fillna once per setup (#65688) 2026-05-26 10:16:49 -07:00
ci CI: Clean misc workflows and files (#65455) 2026-05-10 09:08:35 -07:00
doc DOC: document non-inclusive slicing on DatetimeIndex (#64323) 2026-06-03 13:52:27 -07:00
LICENSES PERF: branchless calendar algorithms and batch field extractors (#64662) 2026-04-29 11:06:52 -04:00
pandas Fix doc alignment (#64118) 2026-06-03 13:26:05 -07:00
scripts CI: Run code checks with Pixi (#65300) 2026-05-02 19:47:49 -07:00
subprojects REF: use fast_float instead of bespoke str-to-double parsers (#64432) 2026-03-17 13:32:47 -07:00
typings REF: No longer pass through nopython in numba APIs (#64483) 2026-03-09 11:45:18 -07:00
web DOC: Add pd-money to ecosystem (#63843) 2026-05-13 14:47:09 -07:00
.gitattributes DEV: Remove setup.py/setuptools support (#63981) 2026-02-12 08:59:08 -08:00
.gitignore Remove Source Files From gitignore (#65474) 2026-05-06 15:24:52 -07:00
.pre-commit-config.yaml [pre-commit.ci] pre-commit autoupdate (#65771) 2026-06-01 10:18:54 -07:00
AGENTS.md DOC: Add AGENTS.md with basic type and docstring guidelines (#62541) 2025-11-13 16:14:16 -05:00
AUTHORS.md DOC: Fix grammar in AUTHORS.md (#61739) 2025-06-30 10:18:36 -07:00
CITATION.cff ENH: Update CFF with publication reference, Zenodo DOI, and other details (#56589) 2023-12-27 10:59:52 -08:00
codecov.yml CI: Partially revert #64658 (use pytest-cov again) (#64693) 2026-03-18 13:19:00 -07:00
environment.yml CI: lowercase types-pymysql/types-pyyaml to fix mamba 2.6.0 shard lookup (#65430) 2026-05-01 13:26:45 +02:00
generate_pxi.py TYP: simple return types from ruff (#56568) 2023-12-19 13:11:12 -08:00
generate_version.py DEV: Remove setup.py/setuptools support (#63981) 2026-02-12 08:59:08 -08:00
LICENSE Update license year to 2026 (#63538) 2026-01-06 10:03:03 -08:00
MANIFEST.in CLN: Remove TRACE macro in tokenizer (#65073) 2026-04-04 12:39:59 -07:00
meson.build DIST: include vendored licenses in wheel (#64709) 2026-03-20 11:32:37 -07:00
pixi.lock CI: Update pixi.lock (#65764) 2026-05-31 11:37:24 -07:00
pixi.toml BUG: keep fsspec OpenFile alive for chained URL reads (#65470) 2026-05-05 09:36:10 -07:00
pyproject.toml TYP: enable mypy checks for low-hanging _libs stubs (#65629) 2026-05-16 10:18:05 -07:00
pyright_reportGeneralTypeIssues.json TYP: enable pyright checking for pandas.compat.pickle_compat (#65610) 2026-05-12 09:18:59 -07:00
README.md Update link to tzdata documentation (#65579) 2026-05-11 08:18:09 -07:00
requirements-dev.txt CI: lowercase types-pymysql/types-pyyaml to fix mamba 2.6.0 shard lookup (#65430) 2026-05-01 13:26:45 +02:00

Pandas Logo

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

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

  • Easy handling of 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 from DataFrame and higher dimensional objects
  • Automatic and explicit data 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 functionality to perform split-apply-combine operations on data sets, for both aggregating and transforming data
  • Make it easy to convert ragged, differently-indexed data in other Python and NumPy data structures into DataFrame objects
  • Intelligent label-based slicing, fancy indexing, and subsetting of large data sets
  • Intuitive merging and joining data sets
  • Flexible reshaping and pivoting of data sets
  • Hierarchical labeling of axes (possible to have multiple labels per tick)
  • Robust I/O tools for loading data from flat files (CSV and delimited), Excel files, databases, and saving/loading data from the ultrafast HDF5 format
  • Time series-specific functionality: date range generation and frequency conversion, moving window statistics, date shifting and lagging

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) 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


Go to Top