* chapter_3_table_3 The following data set consists of three groups of 10 participants who were randomly assigned to one mood-induced condition. After viewing a video that was supposed to induce a certain mood state, the participants rated their mood state on several scales. The hypothesis of interest is whether the population group mean on Global Affect Rating differed among the groups. Here we run a one-way ANOVA on the Mood-Induction data and obtain the results given in Table 3.4. ; LIBNAME md 'd:\data files by type\sas data files\tables'; DATA c3t3; SET md.chapter_3_table_3; PROC GLM DATA=c3t3; CLASS cond; MODEL mood = cond; RUN;