Load & explore a dataset

The first hour of every ML project: load a CSV, inspect it, and split it into features and label.

This is the bridge into Machine Learning — get the table into pandas, understand it, then hand X (features) and y (label) to a model.

More lessons in Python for data