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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1508 views
  • 0 likes
  • 3 in conversation