Path: blob/main/07. Data Analysis with Python/01. Importing Datasets/README.md
8138 views
Importing Datasets
This lab involves acquiring the data using the pd.read_csv() function, and briefly exploring the data using some standard functions such as:
df.head()df.columnsdf.describe()df.info()
The columns headers of the dataframe are also renamed, and NaN values are dropped, in preparation for later analysis.