Measures Concepts
GitHub icon

Pandas

Pandas - Library

< >

Pandas is an open source library created in 2008.

#434on PLDB 16Years Old

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


Example from 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

Language features

Feature Supported Token Example
Integers ✓
Floats ✓
Line Comments ✓

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout