Features and Labels
Know
A supervised dataset separates the inputs a model may use from the target it is asked to predict. Which columns count as which is a modelling decision.
Apply
Identify the target first, then decide which remaining columns are legitimately available at prediction time.
Watch out
Including a column that would not exist when the prediction is made, which leaks the answer.
Study move
Take a dataset and mark each column as feature, label, or unusable, giving a reason for each.
