Deaths By Age Group – Weighted

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:

Table AD_2019_AGE_YRS_ROUND

Deaths By Age Group

Reactions By Age Group

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_RangeDIED_CountReaction_CountPercent Died Per Age Range
0 to 104,107228,9301.79
11 to 2035487,5800.40
21 to 3013148,5070.27
31 to 4010445,4730.23
41 to 5017143,2730.40
51 to 6020652,9430.39
61 to 7035967,2460.53
71 to 8044936,8511.22
81 to 9031411,3452.77
91 plus1061,3028.14
    
Total6,301623,4501.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.

—-

Leave a Reply

Your email address will not be published. Required fields are marked *