Alright so i have found this really good answer on how to normalize my data.
I implemented @user25658 's code into my own project successfully, trained a linear model and used it to make a prediction.
Say y = 0.4513869
is the predicted normalized value which i would like to de-normalize.
Based on the normalization code below, how can i achieve this?
normalized = (x-min(x))/(max(x)-min(x))