CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
DanielBarnes18

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: DanielBarnes18/IBM-Data-Science-Professional-Certificate
Path: blob/main/07. Data Analysis with Python/01. Importing Datasets/README.md
Views: 4598

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.