Start by marking which rows are train and which row is test.
highlighted = computed this step
Show the role column
Rows A and B are train rows. Row C is a test row.
A,B: trainC: test
Read the x values
The x values are 0, 10, and 20.
xA=0,xB=10,xC=20
C is visible but not fit
Row C is visible as the test row. It is not used to fit the train-only min and max.
fit uses train rows only