A raw data file is listed below:
--------10-------20-------30
John McCloskey 35 71 -
June Rosesette 10 43 -
Tineke Jones 9 37 -
The following SAS program is submitted using the raw data file as input: data work.homework; infile 'file-specification'; input name $ age height; if age LE 10; run;
How many observations will the WORK.HOMEWORK data set contain?
mhminkov
3 years, 5 months ago