********************************************************* * SAS Program to read and print the file (kotelny.dat) * * containing the Atmospheric CO2 concentrations derived * * from flask samples collected from U.S.S.R. operated * * sampling site Kotelny * ********************************************************* ; data kotelny; infile 'kotelny.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;