//
//normal command
//
//this command is used to nomalize value to normalize or standardize.
//syntax is same as model making.
normal [variables]/
(option)
;
//option
method=normal //normalize (v-mean)/std
method=standard //standize 0 to 1 (v-min)/(max-min)
//Examble
get bank.csv@;
plot box salnow salbeg work;
//As work data is too small, box graph cannot be showed.
//After sandardize value, box graph can be showed.
normal salnow salbeg work/
method=standard
;
anaget;
plot box salnow salbeg work;