Pandas Overview

A Pandas dataframe is essentially a matrix with headers and a unique index. My most common use case is to create a Pandas dataframe from a csv file.

Look up here, if you want a hint on, for instance,

Pandas - How do I … ?

Getting to Pandas Dataframes

Wrangling starts with creating a dataframe.

The most common options might be

You might also want to save, delete, … a dataframe.

For the details, see Listing on Create Pandas Dataframes

Working on a Pandas dataframe

Once you have got your dataframe, you might want to

For the details, see Listing on Operate on Pandas Dataframes

For preparing the visualization, some Pandas operations are typically needed. These operations are however not different from those listed above.

Copyright 2021-2022