See if this helps.
http://ssc.utexas.edu/consulting/answers/hlm/hlm4.html
--
Bruce Weaver
bwe...@lakeheadu.ca
http://sites.google.com/a/lakeheadu.ca/bweaver/
"When all else fails, RTFM."
In addition to what Bruce recommended, remember that you can always
compute "raw" effect sizes. For example, if you're comparing two
independent samples on averages,you might do the following:
pred_avg_grp_1 - pred_avg_grp_2
If it's a clinical trial type of design (groupXtime), the raw effect
size could be:
(pred_avg_grp_1_Posttreatment - pred_avg_grp_1_Baseline) -
(pred_avg_grp_2_Posttreatment - pred_avg_grp_2_Baseline)
You can get the fixed predicted values when setting up your model from
the drop down menu, or you can just add this to your syntax:
/SAVE=FIXPRED
HTH
Ryan
On Apr 30, 5:18Â am, Bruce Weaver <bwea...@lakeheadu.ca> wrote:
> Naepsy wrote:
> > Hi. In SPSS it is not possible to get any effect size parameters for
> > linear mixed models such as eta-squared. Note: I'm talking about
> > linear mixed models, not mixed model GLM, linear regression etc where
> > such option exists. Do you have any suggestions how one could
> > calculate this by hand from the information that SPSS can produce?
>
> See if this helps.
>
> Â Â http://ssc.utexas.edu/consulting/answers/hlm/hlm4.html
>
> --
> Bruce Weaver
> bwea...@lakeheadu.cahttp://sites.google.com/a/lakeheadu.ca/bweaver/
The only formula I learned to compute pseudo R-Square for linear mixed
modeling was:
R-square=1-[(Residual_ConditionalModel+Intercept_ConditionalModel)/
(Residual_UnconditionalModel+Intercept_UnconditionalModel)]
which answers the question as to what percent the conditional (full)
model reduces errors in predicting outcome when compared to the
unconditional (intercept only) model.
---------
I think there is a way to compute Cohen's D when comparing averages of
two independent samples in linear mixed modeling in SAS, but I've
never actually done it. If you have SAS, this link might help you:
--------
The following article explains how to compute R-Square in different
types of linear mixed modeling designs:
Feng, Z., Diehr, P., Peterson, A., McLerran, D. Annual Review of
Public Health, 2001, 22:167-187.
The following book is where I found the pseudo-R-Square formula I
wrote above:
http://www.amazon.com/Multilevel-Analysis-Applied-Research-Methodology/dp/159385191X
--------
Ryan
If it has to be done manually, I can save residuals with /SAVE=RESID
and calculate variance for the results - but how about the intercept
variance?
> http://groups.google.com/group/comp.soft-sys.sas/browse_thread/thread...
>
> --------
> The following article explains how to compute R-Square in different
> types of linear mixed modeling designs:
>
> Feng, Z., Diehr, P., Peterson, A., McLerran, D. Annual Review of
> Public Health, 2001, 22:167-187.
>
> The following book is where I found the pseudo-R-Square formula I
> wrote above:
>
> http://www.amazon.com/Multilevel-Analysis-Applied-Research-Methodolog...
> --------
>
> Ryan
Let's assume you have a model with a random slope and random intercept
term. You need to make all slopes fixed, and keep the intercept as
random.
Run the model with the categorical independent variable
MIXED Y BY X
/FIXED=x| SSTYPE(3)
/METHOD=ML
/PRINT=SOLUTION TESTCOV
/RANDOM=INTERCEPT | SUBJECT(SUBJ) COVTYPE(VC).
and then run the model with the intercept only.
MIXED Y
/FIXED=| SSTYPE(3)
/METHOD=ML
/PRINT=SOLUTION TESTCOV
/RANDOM=INTERCEPT | SUBJECT(SUBJ) COVTYPE(VC).
------
In your output, go to the "Estimates of Covariance Parameters" table.
That is where you'll find the values necessary to compute this pseudo
R-square.
Ryan
Repeated measures AR1 diagonal ,1701
AR1 rho ,6542
Intercept + BLscl Variance ,0533
[subject=subj]
I need to know a bit more about your design. Now that I see you're
using var-cov AR1, that says to me that you have more than two time
points. Could you tell me the following:
# groups
# covariates (if any)
# time points
type of outcome
MIXED syntax you're using