PCA-Perfil
data apolin;
input Perfil $ Habitantes IDH Rend_Cap Cap_Empr Teci_Emr
Gov_Descn Org_Prod Ins_Compet Edu_Empr;
datalines;
Cafe 75.18421053 19.74528947 0.676578947 0.466684211 0.489184211 0.582368421 0.469763158 0.487 0.017421053
Gado 409.5 0.745 0.64 0.4695 0.608 0.6895 0.56 0.628 0.354
Indus 450 0.791 1.155 0.5765 0.7125 0.722 0.5975 0.765 0.0075
Soja 232 0.755 0.84 0.452 0.509 0.626 0.567 0.651 0
;
proc print;
run;
/* input Perfil $ Habitantes IDH Rend_Cap Cap_Empr Teci_Emr
Gov_Descn Org_Prod Ins_Compet Edu_Empr;
*/
Title "PCA-Biplot";
proc prinqual data=apolin plots=(MDPref)
/* project onto Prin1 and Prin2 */
; /* use COV scaling */
transform identity(Habitantes IDH Rend_Cap Cap_Empr Teci_Emr
Gov_Descn Org_Prod Ins_Compet Edu_Empr); /* identity transform */
id Perfil;
ods select MDPrefPlot;
run;
Comentários
Postar um comentário