Concept

Pandas DataFrame

A DataFrame is a 2-dimensional data structure, in which the data is organized in rows and columns of any type. Each column has a label, and the index of a DataFrame are the row labels. To create a DataFrame, the data can be passed in several ways: as a Series, a record or structured ndarray, a 2-D ndarray, or as a dictionary of Series, lists, or dictionaries.

0

4

Updated 2021-03-31

Tags

Data Science

Related