1.極差标準化方法
經濟統計分析中對正負名額标準化的一種處理方法:

sas計算:
proc sql;
create table new as
select (x-min(x))/(max(x)-min(x)) as z_x,
(max(x)-x)/(max(x)-min(x)) as f_x
from mydata;
quit;
2.因子分析過程中綜合得分的計算
網上有很多spss軟體操作說明,sas的原理一樣,先得出因子得分,在進行因子得分的權重。
proc factor data=raw score outstat=fact;
run;
proc score data=raw score=fact out=scores;
run;
data need;
set scores(keep= factor1 factor2 ...);
zonghescores= a*factor1+b*factor2+...;/*a,b,...,等系數proc factor過程得出*/
run;