Impact of Severe Weather Events on Public Health and Economic Consequences

Introduction

Severe weather events such as storms can result in significant public health and economic challenges for communities. Fatalities, injuries, and property damage are common outcomes of such events, and minimizing their impact is a priority for disaster preparedness and response. This report analyzes data from the U.S. National Oceanic and Atmospheric Administration’s (NOAA) storm database to understand the types of weather events that most affect population health and have the greatest economic consequences.

Data

The NOAA storm database includes data on major storms and weather events across the United States from 1950 through November 2011. It records event characteristics such as location, fatalities, injuries, and property damage. The analysis focuses on event types (EVTYPE) and their related public health and economic impacts.

Questions

  • Which types of events are most harmful to population health?
  • Which types of events have the greatest economic consequences? ## Data Processing For this analysis, data was extracted and preprocessed to focus on relevant variables such as event types, fatalities, injuries, property damage, and crop damage. Only the most significant events were considered, and data was aggregated to identify the top 10 event types for both public health and economic impacts.

##Population Health Impact The event types were grouped by the total number of fatalities and injuries. The top 10 event types were visualized in a bar plot.

##Economic Impact Property and crop damage values were standardized using exponent indicators (PROPDMGEXP and CROPDMGEXP), and the total cost was calculated. The top 10 events with the highest economic consequences were also visualized.

Results

  1. Population Health Impact The analysis of fatalities and injuries shows that tornadoes have the most severe impact on public health, causing the highest number of both fatalities and injuries.

  2. Economic Impact In terms of economic consequences, floods and hurricanes/typhoons were found to cause the greatest damage, with significant costs in both property and crop damage.

Data Download and Loading

## [1] "Data: "
## [1] 985
## Classes 'data.table' and 'data.frame':   902297 obs. of  37 variables:
##  $ STATE__   : chr  "1.00" "1.00" "1.00" "1.00" ...
##  $ BGN_DATE  : chr  "4/18/1950 0:00:00" "4/18/1950 0:00:00" "2/20/1951 0:00:00" "6/8/1951 0:00:00" ...
##  $ BGN_TIME  : chr  "0130" "0145" "1600" "0900" ...
##  $ TIME_ZONE : chr  "CST" "CST" "CST" "CST" ...
##  $ COUNTY    : num  97 3 57 89 43 77 9 123 125 57 ...
##  $ COUNTYNAME: chr  "MOBILE" "BALDWIN" "FAYETTE" "MADISON" ...
##  $ STATE     : chr  "AL" "AL" "AL" "AL" ...
##  $ EVTYPE    : chr  "TORNADO" "TORNADO" "TORNADO" "TORNADO" ...
##  $ BGN_RANGE : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ BGN_AZI   : chr  "" "" "" "" ...
##  $ BGN_LOCATI: chr  "" "" "" "" ...
##  $ END_DATE  : chr  "" "" "" "" ...
##  $ END_TIME  : chr  "" "" "" "" ...
##  $ COUNTY_END: num  0 0 0 0 0 0 0 0 0 0 ...
##  $ COUNTYENDN: logi  NA NA NA NA NA NA ...
##  $ END_RANGE : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ END_AZI   : chr  "" "" "" "" ...
##  $ END_LOCATI: chr  "" "" "" "" ...
##  $ LENGTH    : num  14 2 0.1 0 0 1.5 1.5 0 3.3 2.3 ...
##  $ WIDTH     : num  100 150 123 100 150 177 33 33 100 100 ...
##  $ F         : int  3 2 2 2 2 2 2 1 3 3 ...
##  $ MAG       : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ FATALITIES: num  0 0 0 0 0 0 0 0 1 0 ...
##  $ INJURIES  : num  15 0 2 2 2 6 1 0 14 0 ...
##  $ PROPDMG   : num  25 2.5 25 2.5 2.5 2.5 2.5 2.5 25 25 ...
##  $ PROPDMGEXP: chr  "K" "K" "K" "K" ...
##  $ CROPDMG   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ CROPDMGEXP: chr  "" "" "" "" ...
##  $ WFO       : chr  "" "" "" "" ...
##  $ STATEOFFIC: chr  "" "" "" "" ...
##  $ ZONENAMES : chr  "" "" "" "" ...
##  $ LATITUDE  : num  3040 3042 3340 3458 3412 ...
##  $ LONGITUDE : num  8812 8755 8742 8626 8642 ...
##  $ LATITUDE_E: num  3051 0 0 0 0 ...
##  $ LONGITUDE_: num  8806 0 0 0 0 ...
##  $ REMARKS   : chr  "" "" "" "" ...
##  $ REFNUM    : num  1 2 3 4 5 6 7 8 9 10 ...
##  - attr(*, ".internal.selfref")=<externalptr>

Table: Storm Data

Data Subsetting

## Classes 'data.table' and 'data.frame':   902297 obs. of  7 variables:
##  $ evtype    : chr  "TORNADO" "TORNADO" "TORNADO" "TORNADO" ...
##  $ fatalities: num  0 0 0 0 0 0 0 0 1 0 ...
##  $ injuries  : num  15 0 2 2 2 6 1 0 14 0 ...
##  $ propdmg   : num  25 2.5 25 2.5 2.5 2.5 2.5 2.5 25 25 ...
##  $ propdmgexp: chr  "K" "K" "K" "K" ...
##  $ cropdmg   : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ cropdmgexp: chr  "" "" "" "" ...
##  - attr(*, ".internal.selfref")=<externalptr>

Table: Data subsetted

Function to convert exponent values

convert_exponent <- function(exp) {
  if (exp == "H" || exp == "h") return(1e2)
  if (exp == "K" || exp == "k") return(1e3)
  if (exp == "M" || exp == "m") return(1e6)
  if (exp == "B" || exp == "b") return(1e9)
  return(1)
}

Population Health Analysis (Fatalities & Injuries)

## tibble [20 Ă— 3] (S3: tbl_df/tbl/data.frame)
##  $ evtype: chr [1:20] "TORNADO" "TORNADO" "EXCESSIVE HEAT" "EXCESSIVE HEAT" ...
##  $ type  : chr [1:20] "fatalities" "injuries" "fatalities" "injuries" ...
##  $ value : num [1:20] 5633 91346 1903 6525 978 ...

Table: Population Health Analysis Data

Economic Consequences Analysis (Property & Crop Damage)

## tibble [20 Ă— 3] (S3: tbl_df/tbl/data.frame)
##  $ evtype: chr [1:20] "FLOOD" "FLOOD" "HURRICANE/TYPHOON" "HURRICANE/TYPHOON" ...
##  $ type  : chr [1:20] "property_damage" "crop_damage" "property_damage" "crop_damage" ...
##  $ value : num [1:20] 1.45e+11 5.66e+09 6.93e+10 2.61e+09 5.69e+10 ...

Table: Economic Consequences Data ### Visualization: Population Health (Fatalities & Injuries)

Visualization: Economic Damage (Property & Crop Damage)

Conclusion:

This analysis highlights the importance of focusing on tornadoes to mitigate risks to population health. Improved infrastructure and early warning systems could help reduce injuries and fatalities. In terms of economic damage, the most costly events—floods and hurricanes/typhoons—warrant investment in innovative technologies and robust infrastructure to protect property and agricultural assets.

By addressing these key areas, communities can better prepare for severe weather events and minimize their detrimental effects.

Tornadoes are the most harmful to population health, causing the highest number of fatalities and injuries. Floods and hurricanes/typhoons result in the greatest economic damage, with billions in property and crop loss. ```