# Loading CSV Data in Python
# Module 0 - Loading CSV data in Python
# Dataset: /data/wage_sample.csv

# Loading CSV Data in Python
#
# In this notebook, you will load `wage_sample.csv` and inspect the first rows.

# %% Cell 2
import pandas as pd

df = pd.read_csv("wage_sample.csv")
print(df.head())

# %% Cell 3
print("Rows:", len(df))
print("Columns:", list(df.columns))

# Think about it
#
# - Which column is the outcome variable if we want to explain wages?
# - Which columns might help explain wage differences?
