|
Hello all,
I am relatively new to SAS and am trying to read into SAS a text
file that has three variables (carbon monoxide levels, source, and
date). Here is an example of a few of the data lines:
15 BAAQMD 09/10/92
20 BAAQMD 09/22/92
15 BAAQMD 03/30/93
45 refinery 04/16/93
30 refinery 04/17/93
My code is as follows:
data oil ;
infile "Z:\MHolmes\STAT 530\Unzipped Files\data_refinery.dat" ;
input Monox source :$8. date mmddyy. ;
run ;
Proc print data.oil ;
run ;
My output is indicating that some of my dates are missing (ie a period
shows up). Any idea how to fix this problem? Thanks.
Mike
|