Discussion about this post

User's avatar
henjin's avatar

The age in the age column is not always off by 1-3 years relative to the age at vaccination, because some people were vaccinated in 2023 after their birthday in 2023. The difference between the age column and the age at vaccination is between 0 and 3 years, and the most common difference is 2 years:

> t=as.data.frame(data.table::fread("nz-record-level-data-4M-records.csv"))

> for(i in grep("date",colnames(t)))t[,i]=as.Date(t[,i],"%m-%d-%Y")

> library(lubridate);table(t$age-(t$date_of_birth%--%t$date_time_of_service)%/%years())

0 1 2 3

256801 1042553 2571549 322535

You said that Kirsch told you that "the D.O.B.’s were off by no more than 14 days". However on Kirsch's S3 server, the file `data-transparency/Code/time-series analysis/obfuscation_algorithm.txt` says: "For each person, a non-zero date offset was chosen from a gaussian distribution with sigma=7 and all of the dates for that record were offset for that same amount, so the differences between dates are identical." It's followed by this Python code: `date_delta = 0; while date_delta == 0: date_delta = int(random.normalvariate(0,1) * 7)`. The file doesn't mention anything about a 14-day limit, and only about 95.5% of a normal distribution falls within 2 standard deviations from the mean.

Expand full comment
truth seeker's avatar

Accurae Assessments. The most prescient point is that the Quaxcines are all harmful and none are safe or effective. The rest of the analysis may be interesting for some though it is true that evidence changed no ones mind, ever.

Expand full comment
11 more comments...

No posts