Pandas is an open source library created in 2008 by Wes McKinney.
#141on PLDB | 16Years Old |
git clone https://github.com/pandas-dev/pandas/
In computer programming, pandas is a software library written for the Python programming language for data manipulation and analysis. In particular, it offers data structures and operations for manipulating numerical tables and time series. It is free software released under the three-clause BSD license. Read more on Wikipedia...
>>>import pandas as pd
Series
>>>s = pd.Series([1, 3, 5, np.nan, 6, 8])
DataFrame
>>> import pandas as pd
>>>df = pd.DataFrame(np.random.randn(6, 4), index=dates, columns=list("ABCD"))
>>> df.head()
>>>df.tail()
Quick Statistics summary of data
>>> df.describe()
Indexing
Feature | Supported | Example | Token |
---|---|---|---|
Integers | ✓ | ||
Floats | ✓ | ||
Line Comments | ✓ |