*************************************************** *********** SAS Program to read and print ******** *********** data files for atmospheric CO2******** *********** concentrations from Sable ******** *************************************************** ; data sable; infile 'sable.co2' missover; input yr month day julian decyr co2 flag $; proc print; run;