Given the contents of the raw data file EMPLOYEE:
----|----10----|----20----|----30
Alan -
19/2/2004
ACCT -
Rob -
22/5/2004
MKTG -
MaryJane -
14/3/2004
EDUC -
The following SAS program is submitted:
data emps;
infile employee;
input@1 name$
@15 date <insert INFORMAT here>
@25 department$;
run;
Which INFORMAT correctly completes the program?
mhminkov
3 years, 5 months agoKleinstone
3 years, 10 months agoKleinstone
3 years, 11 months ago