Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
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.