


Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An anova example using spss to compare the means of teacher satisfaction in three school types: charter, public, and private. The importance of considering unequal variances and small sample sizes when conducting anova, and suggests using the welch's test as an alternative. The document also includes post hoc tests using tukey and games-howell methods to determine which groups differ significantly.
Typology: Summaries
1 / 4
This page cannot be seen from the preview
Don't miss anything!



Psy 521/621 Univariate Quantitative Methods, Fall 2020 1
satisfaction
df Mean Square F Sig.
Between Groups
Within Groups
Total
satisfaction
Statistic a^ df1 df2 Sig.
Welch 14.259 2 7.211.
a.
(^1) It is also possible to do the same one-way ANOVA using several other procedures in SPSS, including the GLM through the menus or GLM,
(shown as R -squared in output), but the Welch's test is not an option.
Psy 521/621 Univariate Quantitative Methods, Fall 2020 2
library(lessR)
#do this at the beginning of your run and always run it before you open a data set rm(mydata)
library(haven) mydata = read_sav("c:/jason/spsswin/uvclass/school anova.sav")
#note: you may need to add data=mydata after brief=TRUE library(lessR) ANOVA(satisfaction ~ school, brief=TRUE)
BACKGROUND
Response Variable: satisfaction
Factor Variable: school Levels: 1 2 3
Number of cases (rows) of data: 15 Number of cases retained for analysis: 15
n mean sd min max 1 5 6.00 2.00 4.00 8. 2 5 9.00 1.00 8.00 10. 3 5 6.00 0.71 5.00 7.
Grand Mean: 7
Summary Table df Sum Sq Mean Sq F-value p-value school 2 30.00 15.00 8.18 0. Residuals 12 22.00 1.
Association and Effect Size
R Squared: 0. R Sq Adjusted: 0. Omega Squared: 0. Cohen's f: 0.
(^2) The Welch test sometimes may be referred to as W. It is not technically and F , but the F distribution is used as the referent distribution when
determining significance.
Psy 521/621 Univariate Quantitative Methods, Fall 2020 4
Family-wise Confidence Level: 0.
diff lwr upr p adj
2-1 3.00 0.72 5.28 0.
3-1 0.00 -2.28 2.28 1.
3-2 -3.00 -5.28 -0.72 0.
Write-up
The Tukey post hoc tests indicated that teacher satisfaction in the charter schools differed significantly
from teacher satisfaction in public, p = .01, and private schools, p = .01. The Games-Howell test,
however, suggested that the difference between public and charter schools was only marginally
significant, p = .056.