* Read in the simplescores data set; * arranged in columns; * Uses various INFILE options; data siscopt; infile '/home/grego1/STAT 540/scores.txt' firstobs=6 obs=30 missover truncover; INPUT VisitingTeam $ 1-27 vscore 28-30 HomeTeam $ 31-59 hscore 60-62 Note $ 63-83 Ticket; RUN; PROC PRINT DATA = siscopt; title 'Football Scores'; RUN; /* Column markers 12345678901234567890123456789012345678901234567890123456789012345678901234567890 ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8 */