Whats the Damage?
What’s the Damage?
This week I’m shifting toward looking at the damage of each tornado. The dataset I’ve been working with records the total injuries, fatalities, and property loss of each tornado. It also associates a magnitude with each tornado ranging from 0 to 5. What I expect to see is the amount of damage to increase as the magnitude increases.
Starting off with the injuries I first extracted the mag and inj from the original dataset. I then used a ListLogPlot to visualize the data. Below are the plots for injuries, fatalities, and property loss.
The data for the property loss was separated into two formats. From 1950 to 1996 a number was used to represent an estimated amount of loss. Below are the conversations of those numbers as stated in the dataset documentation.
From this I needed to convert all those entries to million dollar amounts. This is because the entries from 1996 onward are recorded in millions of dollars. To make this data not looks skewed compared to the injuries and fatalities, I then divided each entry by 1 million. Below is the process in which this is done. For each of the iterations I picked the dollar loss upper bound.
From the plots there does appear to be an upward trend compared with the magnitude. To get a better understanding of this, I added each column of damage data (injuries, fatalities, and property loss), and then added each row of magnitude. This gave me the total amount of damage for each tornado magnitude.
Putting these values in a line plot clearly shows a upward slope from 0 to 3.
The magnitudes of 4 and 5, however, do not show as much of an increase as the others. In fact, 5 decreases in damage. I believe that this is because the amount of magnitude 5 tornados is much less than 3 or 4. Taking a tally of the magnitudes shows this to be correct.
As seen, there are only 88 occurrences of magnitude 5 tornados, while there are 2703 and 714 magnitude 3 and 4 tornados respectively.