powered by
Normalize all columns of a dataframe so that all values are in [0;1] and for each column the maximum value is 1 and the minimum 0.
newx=(x-min(X))/(max(X)-min(X))
sN.normalizeDF(dframe)
The dataframe to be normalized
The normalized dataframe