/************************************************************/ /* The initial code/statements to read in the data to allow */ /* students to complete problem set 6 (PCA, PFA, and ML) in */ /* SAS. This is not a full solution. */ /************************************************************/ /* file: ps6sas.sas */ /* data: hltlcran.txt */ /* out: NA */ options nocenter; data ps6; infile 'a:\hltlcran.txt'; input #1 v1201 1-4 v0105 5-6 ageyr 8-9 comply 11-12 comply91 13-14 comply95 15-16 mstatus 17-18 incom 19-20 educat 21-22 @23 (v1262-v1270) (3.) #2 v1202 1-4 @5 (vpr1262-vpr1270) (7.); title 'name. Problem Set 6 '; /* homework code, etc. goes here */