TITLE ' oneway.sps '. DATA LIST /IND 1 DEP 3-5 . /* This program has two variables: IND, DEP and 11 observations */ BEGIN DATA. /* Signals the beginning of the data */ 1 0.0 1 1. 1 2. 2 2.12 2 4. 2 5. 2 6. 3 4.73 3 2. 3 3. 3 4. END DATA . /* Signals the end of the data */. ONEWAY DEP BY IND. /* Want to perform one way analysis of variance */ /* /RANGES = TUKEY */ /* This line is commented out */