Waste Water Monitoring and COVID-19
Posted onNCDHHS has been participating in waste-water surveillance for SARS-CoV-2. Unfortunately, there is some delay in the data (posted weekly and what is posted is generally a week old or more).
I just want to explore if there is any predictive power. First, I’ll pull the data down and plot it for Greensboro, NC.
<-
o <- dat
o
o
o <- o
dat
Now I’m going to get into dangerous territory and fit a Bayesian spline to these data and then predict out to look at the trend.
<-
fit
Ok, now let’s do that prediction:
pred_matrix <- pred_matrixError in rendering LaTeXdate) pred_matrix$pred <-
So it appears that there will be an increasing amount of RNA in the wastewater in Greensboro.
guilford_cases <- nccovid::
For fun (because of the reporting delay) I will plot the rolling average cases on this same plot. We can see that the cases did in fact increase, but much more rapidly than our projection would have suggested.
guilford_cases <- guilford_cases
In this next section I was curious if there was a strong cross-correlation with a particular lag. In theory it would be nice if we could say that we see RNA copies increasing and that gives us an alert some period before we see cases. This way health systems could prepare.
cor_list <-
for(i in 1:30){
d <-
cor_list <-
}
overall_cor <-
For this analysis it seems that there isn’t any large warnings…with the highest correlation being a 1 day lead. However there could be a rough 1-4 day advanced warning. Nothing too long term warning as what others have suggested.
Citation
BibTex citation:
@online{dewitt2022
author = {Michael E. DeWitt},
title = {Waste Water Monitoring and COVID-19},
date = 2022-01-01,
url = {https://michaeldewittjr.com/articles/2021-11-22-waste-water-monitoring-and-covid-19},
langid = {en}
}
For attribution, please cite this work as:
Michael E. DeWitt. 2022. "Waste Water Monitoring and COVID-19." January 1, 2022. https://michaeldewittjr.com/articles/2021-11-22-waste-water-monitoring-and-covid-19