Summary: in this set of tutorials, you’ll learn about DataFrame
object in Pandas, how to create and manipulate both the DataFrame
and the data inside it to perform interactive data analysis.
The DataFrame
is a two-dimensional object that extends the Series
.
A DataFrame
combines multiple Series
objects by aligning them along a common index column.
By the look, a DataFrame
is more like a Excel spreadsheed, with rows and columns. But it has advanced capabilities spreadsheets can never have, such as automatic data alignment, quick data query and visualization.
