makinacorpus/pandas

Name: pandas

Owner: Makina Corpus

Description: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more

Created: 2014-10-22 10:50:56.0

Updated: 2016-10-12 23:01:51.0

Pushed: 2014-10-22 10:52:53.0

Homepage: http://pandas.pydata.org

Size: 40032

Language: null

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

pandas: powerful Python data analysis toolkit

Travis-CI Build Status

Scatter-CI Status page

What is it

pandas is a Python package providing 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 toward this goal.

Main Features

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

Where to get it

The source code is currently hosted on GitHub at: http://github.com/pydata/pandas

Binary installers for the latest released version are available at the Python package index

http://pypi.python.org/pypi/pandas/

And via easy_install:

_install pandas

or pip:

install pandas
Dependencies
Highly Recommended Dependencies
Optional dependencies
Notes about HTML parsing libraries
Installation from sources

To install pandas from source you need Cython in addition to the normal dependencies above. Cython can be installed from pypi:

install cython

In the pandas directory (same one where you found this file after cloning the git repo), execute:

on setup.py install

or for installing in development mode:

on setup.py develop

Alternatively, you can use pip if you want all the dependencies pulled in automatically (the -e option is for installing it in development mode):

install -e .

On Windows, you will need to install MinGW and execute:

on setup.py build --compiler=mingw32
on setup.py install

See http://pandas.pydata.org/ for more information.

License

BSD

Documentation

The official documentation is hosted on PyData.org: http://pandas.pydata.org/

The Sphinx documentation should provide a good starting point for learning how to use the library. Expect the docs to continue to expand as time goes on.

Background

Work on pandas started at AQR (a quantitative hedge fund) in 2008 and has been under active development since then.

Discussion and Development

Since pandas development is related to a number of other scientific Python projects, questions are welcome on the scipy-user mailing list. Specialized discussions or design issues should take place on the PyData mailing list / Google group:

https://groups.google.com/forum/#!forum/pydata


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.