/* SAS Example 11: Incomplete Blocking Design Example */ /* Students in a Finance class were divided into teams, where each team worked on a project and presented the results to the rest of the class. After all of the presentations were completed, each team rated the other teams from best (a score of 10) to worst (a score of 0). Is there a significant difference in the ratings received by the teams. If so, which teams are significantly better than which other teams? */ OPTIONS PS=52; OPTIONS LS=78; OPTIONS NODATE; OPTIONS PAGENO=1; DATA PRESENT; INPUT GIVING RECEIVE RATING; CARDS; 1 2 6.7 1 3 9.1 1 4 8.6 1 5 9.2 2 1 7.6 2 3 9.0 2 4 8.1 2 5 9.3 3 1 8.6 3 2 8.3 3 4 8.9 3 5 9.4 4 1 8.9 4 2 8.5 4 3 8.8 4 5 9.6 5 1 9.1 5 2 9.3 5 3 9.6 5 4 9.4 ; RUN; PROC GLM DATA=PRESENT; CLASS RECEIVE GIVING; MODEL RATING = RECEIVE GIVING; RUN;