Answering main Questions
Questions 1
Across the United States, which types of events (as indicated in the EVTYPE variable) are most harmful with respect to population health?
Looking at both injuries and fatalaties across all US states
plotDT<-
stormDT[,
.(
Injuries=sum(INJURIES, na.rm = T),
Fatalities=sum(FATALITIES, na.rm=T)
),
EVTYPE][
order(Injuries, decreasing = T)][1:10]
# factor reordering by size of Injuries
plotDT$EVTYPE<-factor(plotDT$EVTYPE, levels = plotDT[,as.character(EVTYPE)], labels = plotDT[,as.character(EVTYPE)])
plotDT<-melt(plotDT, id.vars = "EVTYPE")
ggplot(plotDT)+
geom_bar(aes(x=EVTYPE, fill=variable, y=value),
stat = "identity",
position = "stack")+
theme_bw()+
scale_fill_brewer(palette = 7,
type = "div")+
scale_y_continuous(labels = function(x)format(x,big.mark = ","))+
labs(title="Top 10 events by injuries and fatalities", y = "# cases with impact on health", x="Events", fill = "Case type")

Looking at the graphe makes it quite obvious that Tornados cause the most injuries and fatalities by far. No other event is close to that.
Questions 2
Across the United States, which types of events have the greatest economic consequences?
Defining economic consequences as a financial impact
plotDT<-
stormDT[, sum(economics, na.rm = T)/1000000000, EVTYPE
][order(V1, decreasing = T)
][1:10]
plotDT$EVTYPE<-factor(plotDT$EVTYPE,
levels = plotDT$EVTYPE,
labels = plotDT$EVTYPE )
ggplot(plotDT)+
geom_bar(aes(x=EVTYPE, y=V1),
stat = "identity",
position = "stack")+
labs(title="Top 10 events by financial impact", y="Financial impact (in $ billions)", x="Events")

The highest financial impact have flood with very much distance to second place Hurrican and Typhoon. The event that was in first place for fatalitys and injuries Tornado is now place three.