Introducing Pandas DataFrame for Python data analysis
- Written by J D
- Published in News
- Hits: 183
Pandas is an open source Python library for data analysis. It gives Python the ability to work with spreadsheet-like data for fast data loading, manipulating, aligning, and merging, among other functions. To give Python these enhanced features, Pandas introduces two new data types to Python: Series
and DataFrame
. The DataFrame
represents your entire spreadsheet or rectangular data, whereas the Series is a single column of the DataFrame
. A Pandas DataFrame
can also be thought of as a dictionary or collection of Series
objects.