This procedure standardizes variables in a SAS data set to a given mean and standard deviation, and it creates a new SAS data set containing the standardized values.
proc standard data = dataname1
mean = 0
std = 1
out = dataname2;
var var1 var2;
run;
mean=0 std=1
out
var
Normalize data by mean 0 and standard deviation 1
The output data will be stored in dataname2
Normalize only specific variables from the data set dataname1 and export them into data set dataname2. There might be other variables coming in to dataname2 from dataname1 that are the same values, not normalized.