Size: 1704
Comment:
|
Size: 2389
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 4: | Line 4: |
Suppse we have five measurements at different time points measured on the same person. We wish to compare the average of the first three time point measurements with the average of the last two. | Suppose we have five measurements at different time points measured on a sample of people. We wish to compare the average of the first three time point measurements with the average of the last two. This is ''not'' one of the default contrasts in SPSS so we need literally something special to compute them. |
Line 6: | Line 6: |
This can be done in SPSS using the below syntax. It is a bit cumbersome in that you need to specify a 5 x 5 matrix of contrasts using the special option. The contrasts need to be ''orthogonal'' so the sum of their products should equal zero. One tip is to use a row of '1s' for the first contrast. The actual contrast of interest is the second contrast (-0.333,-0.333,-0.333,0.5,0.5). | This can be done in SPSS using the below syntax which uses the special option in the MANOVA procedure. It is a bit cumbersome in that you need to specify a 5 x 5 matrix of contrasts (in general a k x k for k repeated measures). The contrasts need to be ''orthogonal'' so the sum of their products should equal zero. One tip is to use a row of '1s' for the first contrast. The actual contrast of interest here is the second specified contrast = (-0.333,-0.333,-0.333,0.5,0.5). |
Line 16: | Line 16: |
The output will include something like this for each of the k contrasts whjich SPSS calls T1 to Tk. Since the contrast of interest is the second contrast we look in the output for T2. |
|
Line 23: | Line 25: |
Parameter Coeff. Std. Err. t-Value Sig. t Lower -95% CL- Upper | ||||||||||||||||<14% style="VERTICAL-ALIGN: top; TEXT-ALIGN: center"> Parameter ||Coeff ||Std. Err. || t-value || Sig. t || Lower -95% % CL- Upper || ||||||||||||||||<14% style="VERTICAL-ALIGN: top; TEXT-ALIGN: center"> 1 || -0.45323949 || .43002 || -1.05400 || .31448 || -1.39970 || .49322 || |
Line 25: | Line 28: |
1 -.45323949 .43002 -1.05400 .31448 -1.39970 .49322 | |
Line 27: | Line 29: |
Note that SPSS orthonormalises the contrast coefficients which simply signifies the sum of the squares of the contrast coefficients is one. The contrast coefficients are outputted using the /PRINT=TRANSFORM subcommand and are (-0.365,-0.365,-0.365,0.548,0.548). |
Note that SPSS orthonormalises the contrast coefficients which simply signifies the squares of the contrast coefficients sum to unity. The contrast coefficients can be outputted using the /PRINT=TRANSFORM subcommand and are in our case (-0.365,-0.365,-0.365,0.548,0.548). Notice the first three contrast vector elements and last two elements are equal confirming we wish to compare the first three and last two means. |
How do I perform a non-standard comparison of means in a repeated measures anova in SPSS ?
Suppose we have five measurements at different time points measured on a sample of people. We wish to compare the average of the first three time point measurements with the average of the last two. This is not one of the default contrasts in SPSS so we need literally something special to compute them.
This can be done in SPSS using the below syntax which uses the special option in the MANOVA procedure. It is a bit cumbersome in that you need to specify a 5 x 5 matrix of contrasts (in general a k x k for k repeated measures). The contrasts need to be orthogonal so the sum of their products should equal zero. One tip is to use a row of '1s' for the first contrast. The actual contrast of interest here is the second specified contrast = (-0.333,-0.333,-0.333,0.5,0.5).
MANOVA A B C D E /WSFACTORS = TIME(5) /CONTRAST (TIME)= SPECIAL(1 1 1 1 1 -0.333 -0.3333 -0.333 0.5 0.5 1 -1 0 0 0 1 0-1 0 0 0 0 0 1 -1) /PRINT = TRANSFORM PARAMETERS(ESTIM) /WSDESIGN.
The output will include something like this for each of the k contrasts whjich SPSS calls T1 to Tk. Since the contrast of interest is the second contrast we look in the output for T2.
Contrast T2 tests whether the difference between the first three means and the last two means equals zero.
- Estimates for T2 --- Individual univariate .9500 confidence intervals TIME
Parameter |
Coeff |
Std. Err. |
t-value |
Sig. t |
Lower -95% % CL- Upper |
||||||||
1 |
-0.45323949 |
.43002 |
-1.05400 |
.31448 |
-1.39970 |
.49322 |
Note that SPSS orthonormalises the contrast coefficients which simply signifies the squares of the contrast coefficients sum to unity. The contrast coefficients can be outputted using the /PRINT=TRANSFORM subcommand and are in our case (-0.365,-0.365,-0.365,0.548,0.548). Notice the first three contrast vector elements and last two elements are equal confirming we wish to compare the first three and last two means.
Multiplying each of the elements in this contrast vector by the five time means gives -0.365(4.1666 + 4.25 + 4.583) + 0.548(4.333+3.5) = 0.45 = the outputted contrast coefficient above.