The USCLIM Data Sets

DATA Step to Create the USCLIM.HIGHTEMP Data Set

libname usclim 'SAS-data-library';

data usclim.hightemp;
   input State $char14. City $char14. Temp_f Date date9. Elevation;
   datalines;
Arizona       Parker         127 07jul1905 345
Kansas        Alton          121 25jul1936 1651
Nevada        Overton        122 23jun1954 1240
North Dakota  Steele         121 06jul1936 1857
Oklahoma      Tishomingo     120 26jul1943 6709
Texas         Seymour        120 12aug1936 1291
;

DATA Step to Create the USCLIM.HURRICANE Data Set

libname usclim 'SAS-data-library'; data usclim.hurricane; input @1 State $char14. @16 Date date7. Deaths Millions Name $; format Date worddate18. Millions dollar6.; informat State $char14. Date date9.; label Millions='Damage'; datalines; Mississippi 14aug1969 256 1420 Camille Florida ...

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.