Skip to main content

ANALYSIS OF VARIANCE (ANOVA) PT-II


Graphing Interactions in an ANOVA. 
It is often useful to examine a plot of the means by condition when trying to interpret a significant interaction.

To get plot of means by condition from SPSS

Perform a multifactor ANOVA as described above, but do not click the OK button to perform the analysis.
Click the Plots button.
Define all the plots you want to see.
o To plot a main effect, move the factor to the Horizontal Axis box and click the Add button.
o To plot a two-way interaction, move the first factor to the Horizontal Axis box, move the second factor to the Separate Lines box, and click the Add button.
o To plot a three-way interaction, move the first factor to the Horizontal Axis box, move the second factor to the Separate Lines box, move the third factor to the Separate Plots box, and click the Add button.
Click the Continue button.
Click the OK button.

In addition to the standard ANOVA output, the plots you requested will appear in a section titled Profile Plots.

Post-hoc comparisons for when you have two or more factors.
Graphing the means from a two-way or three-way between-subject ANOVA shows you the basic form of the significant interaction. However, the analyst may also wish to perform post-hoc analyses to determine which means differ from one another. If you want to compare the levels of a single factor to one another, you can follow the post-hoc procedures described in the section on one-way ANOVA.
Comparing the individual cells formed by the combination of two or more factors, however, is slightly more complicated. SPSS does provide options to directly make such comparisons. Fortunately, there is a very easy method that allows one to perform post-hocs comparing all cell means to one another within a between-subjects interaction.

We will work with a specific example to illustrate how to perform this analysis in SPSS. Suppose that you wanted to compare all of the means within a 2x2x3 between-subjects factorial design. The basic idea is to create a new variable that has a different value for each cell in the above design, and then use the post-hoc procedures available in one-way ANOVA to perform your comparisons. The total number of cells in an interaction can be determined by multiplying together the number of levels in each factor composing the interaction. In our example, this would mean that our new variable would need to have 2*2*3=12 different levels, each corresponding to a unique combination of our three IVs.

One way to create this variable would be to use the Recode function described above. However, there is an easier way to do this if your IVs all use numbers to code the different levels. In our example we will assume that the first factor (A) has two levels coded by the values 1 and 2, the second factor (B) has two levels again coded by the values 1 and 2, and that the third factor (C) has three levels coded by the values 1, 2, and 3. In this case, you can use the Compute function to calculate your new variable using the formula:

newcode = (A*100) + (B*10) + C

In this example, newcode would always be a three-digit number. The first digit would be equal to the level on variable A, the second digit would be equal to the level on variable B, while the third digit would be equal to the level on variable C. There are two benefits to using this transformation. First, it can be completed in a single step, whereas assigning the groups manually would take several separate steps. Second, you can directly see the correspondence between the levels of the original factors and the level of the composite variable by looking at the digits of the composite variable. If you actually used the values of 1 through 12 to represent the different cells in your new variable, you would likely need to reference a table to know the relationships between the values of the composite and the values of the original variables. If you ever want to create a composite of a different number of factors (besides 3 factors, like in this example), you follow the same general principle, basically multiplying each factor by decreasing powers of 10, such as the following examples.

newcode = (A*10) + B (for a two-way interaction)
newcode = (A*1000) + (B*100) + (C*10) + D (for a four-way interaction)

Regardless of which procedure you use to create the composite variable, you would perform the post-hoc in SPSS by taking the following steps.

Choose Analyze thengoto General Linear Model thengoto Univariate.
Move the DV to the Dependent Variable box.
Move the composite variable to the Fixed Factor(s) box.
Click the Post-Hoc button.
Move the composite variable to the Post-Hoc Tests for box.
Check the boxes next to the post-hoc tests you want to perform.
Click the Continue button.
Click the OK button.

The post-hoc analyses will be reported in the Multiple Comparisons and Homogenous Subsets sections, as described above under one-way between-subjects ANOVA.

Popular posts from this blog

Scholarships in Korean University

Chosun University Korea is offering scholarships for international students for 2012 Spring semester. Important dates are as follows: Application Deadline November 30, 2011 Admission Announcement December 30, 2011 Registration Deadline January 31, 2012 First day of class March 2, 2012 You need the following documents for admission: Required Documents 1. Application Form for Graduate School 2. Self Introduction 3. Study Plan 4. Letter of Recommendation   5 . Request for Academic Credentials Verification 6 . Check List for Application Documents 7 D iploma from undergraduate institution(s) 8 . Transcript from undergraduate institution(s) 9 . Di ploma(s) from graduate institution(s) - Doctorate Only 10 . Transcript from graduate institution(s) – Doctorate Only 1 1 . Official certificate of language score(TOEFL, IELTS, TEPS, TOPI...

US Scholarships Updates

I. Financial Aid UG: Eastern Illinois University Scholarships for New International Students UG: College of Saint Benedict and Saint John's University Scholarships UG: Fresno Pacific University President’s Scholarship UG/Grad: East Tennessee State University Academic Merit Scholarship UG/Grad: Southern Oregon University Cascade & Siskiyou International Student Scholarships UG/Grad: CollegeWeekLive $1,000 Scholarship Grad/Postgrad/Postdoc: The University of Michigan Law School Fellowships II. Campus News • Live Online: College Week Live International Day October 13th • International Students Get Job Search Tips at Seminar • University of Missouri Celebrates International Day • University of California Davis Announces Global Achievement Program I. Financial Aid EASTERN ILLINOIS UNIVERSITY SCHOLARSHIPS FOR NEW INTERNATIONAL STUDENTS Eastern Illinois University is proud to announce scholarships for new international students! Undergraduate students that have...

RELIABILITY

Ideally, the measurements that we take with a scale would always replicate perfectly. However, in the real world there are a number of external random factors that can affect the way that respondents provide answers to a scale. A particular measurement taken with the scale is therefore composed of two factors: the theoretical "true score" of the scale and the variation caused by random factors. Reliability is a measure of how much of the variability in the observed scores actually represents variability in the underlying true score. Reliability ranges from 0 to 1. In psychology it is preferred to have scales with reliability greater than 0.7. The reliability of a scale is heavily dependent on the number of items composing the scale. Even using items with poor internal consistency, you can get a reliable scale if your scale is long enough. For example, 10 items that have an average inter-item correlation of only .2 will produce a scale with a reliability of .714. Ho...