BookmarkSubscribeRSS Feed
adricano
Obsidian | Level 7
Proc sort data=PICT; by year; 
Proc means data=PICT mean stddev;
by year;
 

proc corr data=pict  plots=all;
	var PVfin_des PVini ADPVgral CMSt CMS_PV HCW FT AOB FAT LEAN L_LM a_LM b_LM FC14d FC3d FC7d
		Ctotal Cinsol IFM LS PG pH_24h pH_3h VE_1;

title 'Computing factor scores';
 
	proc factor data=PICT 
		SIMPLE
		METHOD=PRIN
		PRIORS=ONE
		NFACT=3
		ROUND
		FLAG=.50
		out=solucion1
		outstat=solucion2
		score
		;
		var PVfin_des PVini ADPVgral CMS_PV HCW FT AOB L_LM a_LM b_LM FC14d FC3d FC7d
		Ctotal Cinsol IFM LS PG pH_24h pH_3h VE_1;;
	run; 
	 
1 REPLY 1

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1488 views
  • 0 likes
  • 2 in conversation