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

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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
  • 1137 views
  • 0 likes
  • 2 in conversation