BookmarkSubscribeRSS Feed
Doug____
Pyrite | Level 9

I've seen similar posts but I am trying to determine if there is a simpler method for this:

 

1. Create log10 transformed values of x

2. Process through PROC MEANS to obtain mean, sd, median, min max

3. Raise each of the quantities in (2) to 10**(mean), etc. to get "mean", "SD", "min", and "max" values

4. Calculate dispersion factors

 

-All quantities based on output from Means procedure in step 2

dfplus=(10**mean)+(10**(mean+sd)-10**(mean));

dfminus=(10**mean)-(10**(mean)-10**(mean-sd));

 

Since I need to calculate grand mean, sd, min, max, dfplus, and dfminus by anaysis category, is there a way I can reduce the number of steps?

4 REPLIES 4
Rick_SAS
SAS Super FREQ

I don't understand what your question has to do with the title of this post, "Factor analysis using maximum likelihood estimation."

What are you trying to accomplish? What variables are you using in the factor analysis?

Doug____
Pyrite | Level 9

I chose the incorrect select - can I edit the post so it will show up in the correct location?

Rick_SAS
SAS Super FREQ

Sure. You are welcome to edit the post title, add details, clarify your questions, and so forth.

Ksharp
Super User

Here could get you many statistical estimators .

 

 

data class;
 set sashelp.class;
 log_height=log(height);
run;
proc univariate data=class outtable=want noprint;
var log_height;
run;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 4 replies
  • 1282 views
  • 0 likes
  • 3 in conversation