1
0
Fork 0
mirror of https://github.com/pandas-dev/pandas synced 2026-07-27 00:04:42 +00:00
No description
  • Python 94.5%
  • HTML 2.3%
  • C 1.8%
  • Csound 1.3%
Find a file
jbrockmendel 875729bc59
PERF: SIMD block fast lane in the read_csv tokenizer (#66274)
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-07-26 12:09:17 -07:00
.github CI: restore actions:write for cache cleanup workflow (#66466) 2026-07-26 10:41:13 -07:00
asv_bench PERF: typed non-boxing path for get_indexer_non_unique (#66125) 2026-07-19 17:25:43 -07:00
ci BUG: fix undefined behavior flagged by UBSAN (#65831) 2026-07-13 11:32:19 -04:00
doc PERF: SIMD block fast lane in the read_csv tokenizer (#66274) 2026-07-26 12:09:17 -07:00
LICENSES BLD: Add xsimd Dependency and SIMD detection (#65471) 2026-07-01 18:12:31 -04:00
pandas PERF: SIMD block fast lane in the read_csv tokenizer (#66274) 2026-07-26 12:09:17 -07:00
scripts PERF: rework parallel read_csv gather and worker structure (#66275) 2026-07-20 14:35:12 -07:00
subprojects PERF: bump vendored fast_float to 8.2.10 (#66457) 2026-07-26 12:08:08 -07:00
typings REF: No longer pass through nopython in numba APIs (#64483) 2026-03-09 11:45:18 -07:00
web WEB: remove not-working list of people from Code of Conduct page (#66450) 2026-07-24 08:44:01 -07:00
.gitattributes DIST: remove unnecessary files from source distributions (#66448) 2026-07-24 08:45:56 -07: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 (#66168) 2026-07-06 10:52:22 -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 BLD: exclude numpy 2.5.0 when building wheels (py3.14 segfault) (#66090) 2026-07-13 13:28:34 -07:00
generate_pxi.py
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
meson.build BLD: invoke generate_version.py through the interpreter (GH#64272) (#66417) 2026-07-24 08:47:20 -07:00
pixi.lock CI: Update pixi.lock (#66454) 2026-07-24 15:58:24 -07:00
pixi.toml CI: Scope forkserver launch method to ASV CI task (GH#66193) (#66196) 2026-07-07 12:12:06 -07:00
pyproject.toml CI: Update pixi.lock (#66365) 2026-07-20 11:23:32 -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 BLD: exclude numpy 2.5.0 when building wheels (py3.14 segfault) (#66090) 2026-07-13 13:28:34 -07: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