/***********************************************************/ /*The initial code/statements to read in the data to allow */ /*students to complete Problem Set 1 in SAS */ /*This is not a full solution. */ /***********************************************************/ /* file: hm1sas.sas */ /* data: home1dat */ /* out: NA */ **Problem Set 1 data input using home1dat.txt**; options nocenter ls=80; data hw; infile 'a:\home1dat.txt'; input X 1-3 Y 4-6;