I have data similar to the following:
[
[0, 4, 15]
[0, 3, 7]
[1, 5, 9]
[2, 4, 15]
]
I used One Hot Encoder to preprocess this data so it is suitable for linear regression to give me this:
[
[1, 0, 0, 4, 15]
[1, 0, 0, 3, 7]
[0, 1, 0, 5, 9]
[0, 0, 1, 4, 15]
]
However, I then wish to normalise this data.
Should I normalise category data?