Exploratory Data Analysis
Deaths by Age Group,
Per Capita / Weighted by the number of Reactions in each Age Group
The results of Deaths By Age Group show 65% Deaths for those less than 10 years old. But only 1.6% for those over age 91.
However, in the population, there are more children, than those over age 91.
What are the results for Deaths By Age Group, if they are weighted by the number of reactions?
Field Analysis:
First see:
—
Query:
select CASE WHEN [AGE_YRS_ROUND] <= 10.0 THEN '0 to 10' WHEN [AGE_YRS_ROUND] <= 20.0 THEN '11 to 20' WHEN [AGE_YRS_ROUND] <= 30.0 THEN '21 to 30' WHEN [AGE_YRS_ROUND] <= 40.0 THEN '31 to 40' WHEN [AGE_YRS_ROUND] <= 50.0 THEN '41 to 50' WHEN [AGE_YRS_ROUND] <= 60.0 THEN '51 to 60' WHEN [AGE_YRS_ROUND] <= 70.0 THEN '61 to 70' WHEN [AGE_YRS_ROUND] <= 80.0 THEN '71 to 80' WHEN [AGE_YRS_ROUND] <= 90.0 THEN '81 to 90' WHEN [AGE_YRS_ROUND] <= 400.0 THEN '91 plus' END AS Age_Range , count(*) as DIED_Count from dbo.[VAERSDATA] V join dbo.[AD_2019_AGE_YRS_ROUND] YRS on V.VAERS_ID = YRS.VAERS_ID where YRS.AGE_YRS_ROUND is NOT NULL and DIED is NOT NULL group by CASE WHEN [AGE_YRS_ROUND] <= 10.0 THEN '0 to 10' WHEN [AGE_YRS_ROUND] <= 20.0 THEN '11 to 20' WHEN [AGE_YRS_ROUND] <= 30.0 THEN '21 to 30' WHEN [AGE_YRS_ROUND] <= 40.0 THEN '31 to 40' WHEN [AGE_YRS_ROUND] <= 50.0 THEN '41 to 50' WHEN [AGE_YRS_ROUND] <= 60.0 THEN '51 to 60' WHEN [AGE_YRS_ROUND] <= 70.0 THEN '61 to 70' WHEN [AGE_YRS_ROUND] <= 80.0 THEN '71 to 80' WHEN [AGE_YRS_ROUND] <= 90.0 THEN '81 to 90' WHEN [AGE_YRS_ROUND] <= 400.0 THEN '91 plus' END order by 1; go
—
Results:
Age_Range | DIED_Count | Reaction_Count | Percent Died Per Age Range |
---|---|---|---|
0 to 10 | 4,107 | 228,930 | 1.79 |
11 to 20 | 354 | 87,580 | 0.40 |
21 to 30 | 131 | 48,507 | 0.27 |
31 to 40 | 104 | 45,473 | 0.23 |
41 to 50 | 171 | 43,273 | 0.40 |
51 to 60 | 206 | 52,943 | 0.39 |
61 to 70 | 359 | 67,246 | 0.53 |
71 to 80 | 449 | 36,851 | 1.22 |
81 to 90 | 314 | 11,345 | 2.77 |
91 plus | 106 | 1,302 | 8.14 |
Total | 6,301 | 623,450 | 1.01 |
—
Analysis:
All years
All data
DIED: n=8150
Where both fields, DIED, and AGE_YRS are populated,
n=6301
Of all deaths, most deaths (4,107) occur in the age group 0 to 10, which comprises 65% of all deaths (6,301).
In the 0 to 10 age group, there are 228,930 VAERS_ID / reactions.
So the weighted percent of deaths in the 0 to 10 age group is 1.79%
All the ten year age groups between 11 and 70, each have less than .53% per capita deaths. All these are less than one third of the 0 to 10 age group.
After age 71, the per capita deaths are all greater than 1%.
71 to 80: 1.22%
81 to 90: 2.77%
91 plus: 8.14%
The higher the age, the greater the percent of deaths post vaccination.
The age groups 81 to 90, and 91 plus, have higher per capita deaths than the 0 to 10 age group (1.79%).
The 91 plus age group is concerning. Of all those that reported a reaction, 8.14% died, post vaccination. This rate is 4.5 times greater than the 0 to 10 age group (1.79%)
These results would suggest that both the young (0 to 10 years) and the old (71 years or older), are at a much higher risk of death, post vaccination.
—-