Disabled By Year

Exploratory Data Analysis

Of the reactions, how many were disabled each year?

Field Analysis:

Select DISABLE
, count(*) Count 
from dbo.[VAERSDATA]
group by DISABLE

DISABLECountPercent
NULL741,83997.68
Y17,6442.32
   
Total759,483100

In the field DISABLE, the only values are NULL and Y. No data anomalies such as blanks or other characters. Clean data.

Of the 759,483 rows in VAERSDATA, 17,644 (2.32%) were DISABLEd after a vaccination.

Percent Disabled By Year:


select Year ( s_date ) Year
, Count (DISABLE) Count_Disabled
, count(*) Count_Reactions
from dbo.[VAERSDATA]
group by Year ( s_date )
order by 1

—-

YearCount_DisabledCount_ReactionsPercent Disabled by Year
1990942,1514.37
19911729,9921.72
199215110,8171.40
199318210,3091.77
199424310,3542.35
199518910,2731.84
199622311,1891.99
199725211,6082.17
199830510,7822.83
199940312,8783.13
200043315,1142.86
200160814,6334.15
200261415,3314.00
200348518,0822.68
200440416,5102.45
200542517,4472.44
200643319,3302.24
200765730,8132.13
200876533,4432.29
200978137,0422.11
201075036,5782.05
201158731,1261.89
201257632,1101.79
201365436,2621.80
201490141,2412.18
20151,28051,9542.46
20161,09953,6992.05
20171,14646,3442.47
20181,44157,8062.49
20191,34753,8462.50
20204441910.50
    
Totals   
1990-2020:17,644759,4832.32
1991-2019:17,506756,9132.31

—-

Statistics for years 1991-2019:

—-

Stats: 1991-2019Percent Disabled by Year
Min1.40
Max4.15
Median2.24
Mean2.35
Standard Deviation0.61

Analysis:

There are 29 data points (rows) for the years 1991 to 2019.

Total n values:

Count_Disabled :
n=17,644

Count_Reactions:
n=759,483

The mean and median are very close to each other, indicating the data is not significantly skewed.

Both the mean and median are multiples (about 3.6 times) larger than the standard deviation, indicating that there is little variability.

Post vaccinations, the DISABLEd per year is pretty consistent. About 2.2% of all reactions year after year.

The trend is clear. Both the number of reactions, and the number of people becoming disabled after a vaccination are rising.

Leave a Reply

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