Deaths By Age Group

Exploratory Data Analysis

Of all post vaccination deaths, which Age groups are the most affected?

Field Analysis:

For field analysis, first see, Deaths By Age

—-

Query:


use VAERS_2019  
go

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_CountPercent WeightPercent Running Total
0 to 104,10765.1865.18
11 to 203545.6270.80
21 to 301312.0872.88
31 to 401041.6574.53
41 to 501712.7177.24
51 to 602063.2780.51
61 to 703595.7086.21
71 to 804497.1393.33
81 to 903144.9898.32
91 plus1061.68100
    
Total6,301100

Analysis:

All years, All deaths, All data

Where both the field DIED and AGE_YRS is populated,
n=6301

Of all post vaccination deaths,

65.18% are in the age group: 0 to 10

The remaining 34.82% are found in all other age groups starting at age 11. The maximum age found was 104.

Another long tail.

Clearly, post vaccination deaths occur mainly in children.

For more detail on deaths by individual ages, please see
Deaths By Age

 

 

Leave a Reply

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