You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears (though very happy to be corrected) that you have used back calculation by applying the discrete delay + incubation pmf to case counts iteratively to get infections.
Just to flag this approach has been shown to not properly reconstruct infections with a forwards process being needed. Assuming the same delay in both direction leads to over smoothing which in turns creates bias in the Rt estimates (towards 1). You can test this by applying your delay pmf to the reconstructed infections and plotting against the observed data.
It's fairly easy to implement a forwards looking deconvolution/back-calculation approach with some versions implemented here (with the generative version using the renewal equation giving better real time estimates and the data led gaussian process reconstruction being several orders of magnitude faster). There is also a fixed delay approach built into the surveillance package.
The text was updated successfully, but these errors were encountered:
seabbs
changed the title
Use of "back calculation"
Use of "back calculation" introducing bias to Rt estimates
Feb 9, 2021
This plot (from some simulation work quite some time ago so I apologise for its lack of clarity) highlights the issue we had when initially using the same back calculation approach vs deconvolution on simulated data:
(with sampled I think being comparable to a pmf convolution approach)
It appears (though very happy to be corrected) that you have used back calculation by applying the discrete delay + incubation pmf to case counts iteratively to get infections.
LocalCovidTracker/prep/daily_tracker_scraper.R
Line 113 in fba6017
Just to flag this approach has been shown to not properly reconstruct infections with a forwards process being needed. Assuming the same delay in both direction leads to over smoothing which in turns creates bias in the Rt estimates (towards 1). You can test this by applying your delay pmf to the reconstructed infections and plotting against the observed data.
See here and here for details.
It's fairly easy to implement a forwards looking deconvolution/back-calculation approach with some versions implemented here (with the generative version using the renewal equation giving better real time estimates and the data led gaussian process reconstruction being several orders of magnitude faster). There is also a fixed delay approach built into the
surveillance
package.The text was updated successfully, but these errors were encountered: