* Create SAS data set of garden data; * Read data file 'garden_multobs.txt'; * There are two observations per line of data; DATA garden; *INFILE 'z:\My Documents\teaching\stat_517\garden_multobs.txt'; FILENAME webpage URL 'http://people.stat.sc.edu/hitchcock/garden_multobs.txt'; INFILE webpage; INPUT gardener $ tomato grape location $ @@; PROC PRINT DATA = garden; RUN;