The CLIMATE, PRECIP, and STORM Data Sets

DATA Step to Create the CLIMATE.HIGHTEMP Data Set

libname climate 'SAS-data-library';

data climate.hightemp;
   input Place $ 1-13 Date date9. Degree_f Degree_c;
   datalines;
South Africa 21jan2010 122 50
Israel       21jun1942 129 54
Argentina    02jan1920 120 49
Saskatchewan 05jul1937 113 45
India        18jun1905 124 51
Poland       29jul1921 104 40 
;

DATA Step to Create the CLIMATE.LOWTEMP Data Set

libname climate 'SAS-data-library';

data climate.lowtemp;
   input Place $ 1-13 Date date9. Degree_f Degree_c;
   datalines;
Antarctica    21jul83 -129 -89
Siberia       06feb33 -90  -68
Greenland     09jan54 -87  -66
Yukon         03feb47 -81  -63
Alaska        23jan71 -80  -67
;

DATA Step to Create the PRECIP.RAIN Data Set

libname precip 'SAS-data-library'; data ...

Get Step-by-Step Programming with Base SAS 9.4 now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.