/****************************************************** *The initial code/statements to read in the data allow *students to complete Problem Set 2 in SAS *This is not a full solution. *******************************************************/ *File: hm2sas.sas; *Data: home2dat.txt; *Out: NA; **Problem Set 2 data input using home2dat.txt**; OPTIONS ovp NOCENTER linesize=80 pagesize=44; DATA HMWK2; INFILE 'a:\home2dat.txt'; INPUT X1 1 X2 2 Y 3;