* ================================================================== * FILE: mixed001 one-way ANOVA.sps . * NOTES: Use MIXED procedure to perform one-way ANOVA . * DATE: 29-Mar-2006 . * AUTHOR: Bruce Weaver, bweaver@lakeheadu.ca . * ================================================================== . * Use the general social survey data file . define !spss ()'C:\Program Files\SPSS\'!enddefine. get file = !spss + '1991 U.S. General Social Survey.sav' . * Perform one-way ANOVA with the following procedures: * MEANS, ONEWAY, UNIANOVA, and MIXED . means prestg80 by region /stat = ANOVA. ONEWAY prestg80 BY region /STATISTICS DESCRIPTIVES /MISSING ANALYSIS . UNIANOVA prestg80 BY region /METHOD = SSTYPE(3) /EMMEANS = TABLES(region) /DESIGN = region . MIXED prestg80 BY region /FIXED = region | SSTYPE(3) /EMMEANS = TABLES(region) . * ================================================================== .