Explore And Describe CSV With Pandas In Jupyter
Jul 14, 2021
The aim of this task🎯 is to open and run an initial exploration of a .csv
file with Pandas
1. code
import pandas as pd
df = pd.read_csv(".\\eer.csv", delimiter=",")
# df.columns = df.columns.str.strip()
df.head()
2. notes
2.1. on pandas data structures
- series: one-dimensional, like an array
- dataframes: two-dimensional, like a table, with rows and columns
2.2. on jupyter
- google based programming environment
- language-agnostic, python typical