********************************************************* * SAS Program to read and print the file (bering.dat) * * containing the Atmospheric CO2 concentrations derived * * from flask samples collected from U.S.S.R. operated * * sampling site Bering * ********************************************************* ; data bering; infile 'bering.dat'; input sampyr 6-7 sampmo 9-10 sampda 12-13 dayyr 15-17 time 19-26 conc 28-35 diff 37-41 flag $ 45; proc print; run;