Symptom Counts By Year

Exploratory Data Analysis
Counts of the reported symptoms for each year

Year over year, is the ratio of reported symptoms increasing, decreasing, or staying consistent?

  

SELECT year (s_date) as Year
, count(*) CNT_VAERS_ID
, sum(sym_cnt ) Sum_sym_cnt
from dbo.[VAERSDATA]
group by year (s_date)
order by 1

YearCNT_VAERS_IDSum_sym_cntAverage_per_year
19902,1516,3832.97
19919,99229,4212.94
199210,81733,3453.08
199310,30935,0893.40
199410,35434,7533.36
199510,27335,0393.41
199611,18937,2513.33
199711,60838,1723.29
199810,78236,1713.35
199912,87845,1133.50
200015,11447,6183.15
200114,63349,9103.41
200215,33149,8233.25
200318,08259,3933.28
200416,51057,0543.46
200517,44762,1173.56
200619,33069,6603.60
200730,813112,4433.65
200833,443131,7773.94
200937,042150,4244.06
201036,578151,7914.15
201131,126133,3254.28
201232,110134,3244.18
201336,262146,7574.05
201441,241153,5413.72
201551,954187,9413.62
201653,699189,7373.53
201746,344174,6833.77
201857,806226,9103.93
201953,846213,3353.96
20204191,6703.99
    
Total (n)759,4832,834,9703.73
Rows31 

Statistics on Average_per_year:

Average per year
Min2.9445
Max4.2834
Median3.5333
Mean3.5867
Standard Deviation0.3662

n values:
Unique VAERS_ID: 759,483
Total number of reported symptoms: 2,834,970

The mean (3.5867) and median (3.5333) are very close to each other.
The standard deviation (0.3662) is approximately 1/10th of either.

—-

Analysis:

The average number of reported symptoms per VAERS_ID has stayed quite consistent between 1990 and early 2020.

 

 

Leave a Reply

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