Imagine I've got a dataset like this:
hour,minutes,seconds, density, speed, label
1,38, 23, 25, 34, 50
The data above says in some street in time '1:38:23' with population density of 25 average speed of cars are 34. the label is a prediction of speed for another 30 minutes in the same street.
My task is to find some model that predicts the label based on data.
I want to use linear regression method.
for normalizing the data, I am not sure if I have to normalize speed terms or not. Can anyone tell me if I have to normalize speed and label both or just normalize speed?