Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
DanielBarnes18
GitHub Repository: DanielBarnes18/IBM-Data-Science-Professional-Certificate
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.columns

  • df.describe()

  • df.info()

The columns headers of the dataframe are also renamed, and NaN values are dropped, in preparation for later analysis.