Preprocessing and Map Normalization
Normalization involves standardization of a data set, usually for
comparison among different types of data.
Goal - Norm_GOAL = (mapValue / 250 ) * 100
0-100 - Norm_0-100 = ((mapValue – min) * 100) / (max – min)
SNV - Norm_SNV = ((mapValue - mean) / stdev) * 100
(Berry)