Subset the U.S. map data set by omitting Alaska, Hawaii, and Puerto Rico.


data lower48;
   set maps.us;
   if state ne stfips("AK");
   if state ne stfips("HI");
   if state ne stfips("PR");
run;