--- title: "Reporting delays and right-truncation of line list data" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Reporting delays and right-truncation of line list data} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.width = 8, fig.height = 5 ) ``` ::: {.alert .alert-info} If you are unfamiliar with the {simulist} package or the `sim_linelist()` function [Get Started vignette](simulist.html) is a great place to start. ::: This vignette covers reporting delays in line list data, how to use {simulist} to produce line list data with a delay between symptom onset and reporting, explains right truncation in outbreak data sets and shows how to use the `truncate_linelist()` function in {simulist} to augment a simulated line list to resemble real-time outbreak data. ## Reporting delays Reporting delays in line list data during an infectious disease outbreak refer to the time lag between when an event (e.g., infection, symptom onset, or hospitalisation) occurs and when it is officially recorded or reported. These delays can arise from factors like diagnostic testing turnaround times, administrative processing, or delayed healthcare-seeking behaviour. In line list data sets, these delays are captured as separate times/dates for different event types, such as the dates of symptom onset, specimen collection, laboratory confirmation, or case reporting. For each case, the delay is the difference between these times/dates, allowing researchers to quantify and adjust for reporting delays when analysing outbreak dynamics. Accurate recording of these dates is crucial for reconstructing the epidemic curve and assessing the timeliness of public health responses. In {simulist}, `sim_linelist()` outputs a line list with a date of reporting (`$date_reporting` column), which by default will be identical to the date of symptom onset (`$date_onset`). However, it is possible to parameterise a reporting delay that can be used by `sim_linelist()` to simulate a delay between symptom onset and reporting. In {simulist} we assume that the reporting delay is the delay between symptom onset and it being reported, it does not reflect reporting of hospitalisation or outcome times. ```{r setup} library(simulist) library(epiparameter) library(tidyr) library(dplyr) library(ggplot2) library(incidence2) ``` First we load the required delay distributions using the {epiparameter} package. ```{r, read-delay-dists} contact_distribution <- epiparameter( disease = "COVID-19", epi_name = "contact distribution", prob_distribution = create_prob_distribution( prob_distribution = "pois", prob_distribution_params = c(mean = 2) ) ) infectious_period <- epiparameter( disease = "COVID-19", epi_name = "infectious period", prob_distribution = create_prob_distribution( prob_distribution = "gamma", prob_distribution_params = c(shape = 3, scale = 2) ) ) onset_to_hosp <- epiparameter( disease = "COVID-19", epi_name = "onset to hospitalisation", prob_distribution = create_prob_distribution( prob_distribution = "lnorm", prob_distribution_params = c(meanlog = 1, sdlog = 0.5) ) ) # get onset to death from {epiparameter} database onset_to_death <- epiparameter_db( disease = "COVID-19", epi_name = "onset to death", single_epiparameter = TRUE ) ``` Setting the seed ensures we have the same output each time the vignette is rendered. When using {simulist}, setting the seed is not required unless you need to simulate the same line list multiple times. ```{r, set-seed} set.seed(123) ``` Using a simple line list simulation without specifying a reporting delay will produce reporting times identical to symptom onset times: ```{r sim-linelist-no-reporting-delay} linelist <- sim_linelist( contact_distribution = contact_distribution, infectious_period = infectious_period, prob_infection = 0.5, onset_to_hosp = onset_to_hosp, onset_to_death = onset_to_death ) identical(linelist$date_onset, linelist$date_reporting) ``` The reporting delay can be specified as a (random) number generating function to the `reporting_delay` argument in `sim_linelist()`. In this example we assume the reporting delays are distributed according to a lognormal distribution with parameters: `meanlog = 1` and `sdlog = 1` (or a mean of approximately 4.5 days and standard deviation of 5.9 days). ```{r sim-linelist-variable-reporting-delay} linelist <- sim_linelist( contact_distribution = contact_distribution, infectious_period = infectious_period, prob_infection = 0.5, onset_to_hosp = onset_to_hosp, onset_to_death = onset_to_death, reporting_delay = function(x) rlnorm(n = x, meanlog = 1, sdlog = 1) ) head(linelist) ``` Here from the first 6 rows of the line list you can see differences between the `$date_onset` column and the `$date_reporting` column. ```{r plot-linelist-events} #| fig.alt: > #| A dot plot with the event dates in the line list plotted a points on the #| figure, connected by horizontal lines. One row in the dot plot corresponds #| to one case (i.e. one row in the line list). The y-axis label is #| "Case name", and the x-axis label is "Event date". The event types are #| "Date admission" (red square), "Date Onset" (blue circle), "Date Outcome" #| (green triangle), and "Date Reporting" (purple diamond). The plot shows #| the distribution of delay times between each event for each individual in #| the line list, with the y-axis order by earliest date of symptom onset at #| the bottom. tidy_linelist <- linelist %>% pivot_longer( cols = c("date_onset", "date_reporting", "date_admission", "date_outcome") ) %>% mutate(ordering_value = ifelse(name == "date_onset", value, NA)) %>% # nolint consecutive_mutate_linter mutate(case_name = reorder(case_name, ordering_value, min, na.rm = TRUE)) # nolint consecutive_mutate_linter ggplot(data = tidy_linelist) + geom_line( mapping = aes(x = value, y = case_name), linewidth = 0.25 ) + geom_point( mapping = aes( x = value, y = case_name, shape = name, col = name ), size = 2 ) + scale_x_date(name = "Event date", date_breaks = "week") + scale_y_discrete(name = "Case name") + scale_color_brewer( palette = "Set1", name = "Event type", labels = c("Date Admission", "Date Onset", "Date Outcome", "Date Reporting") ) + scale_shape_manual( name = "Event type", labels = c( "Date Admission", "Date Onset", "Date Outcome", "Date Reporting" ), values = c(15, 16, 17, 18) ) + theme_bw() + theme(legend.position = "bottom", axis.text.y = element_text(size = 4)) ``` If we plot the difference between the date of symptom onset and reporting then, as expected, the distribution is roughly lognormally distributed. ```{r plot-variable-reporting-delay} #| fig.alt: > #| The distribution of reporting delays from a line list plotted as a #| histogram. The y-axis is the count, and the x-axis is the reporting delay #| in days. Most of the histogram weight is around 5 and there a tail to the #| distribution (left-skewed) with a small number of values above 40. The #| histogram looks approximately lognormally distributed. ggplot(data = linelist) + geom_histogram( mapping = aes(x = as.numeric(date_reporting - date_onset)), binwidth = 2 ) + scale_x_continuous( name = paste0( "Reporting delay (", attr(linelist$date_reporting - linelist$date_onset, "units"), ")" ) ) + theme_bw() + theme(axis.title.y = element_blank()) ``` If instead of a variable reporting delay you want to simulate a fixed reporting delay, for example, the date of reporting is always 5 days after the date of symptom onset, then a different function can be supplied. One option is to set the parameter that controls the variance of the probability distribution to zero (in the case of the lognormal distribution, setting `sdlog = 0`), but a simpler and more readable option would be to give a number generating function that always returned 5. We once again simulate to produce a line list with a fixed reporting delay. ```{r sim-linelist-fixed-reporting-delay} linelist <- sim_linelist( contact_distribution = contact_distribution, infectious_period = infectious_period, prob_infection = 0.5, onset_to_hosp = onset_to_hosp, onset_to_death = onset_to_death, reporting_delay = function(x) rep(5, times = x) ) head(linelist) linelist$date_reporting - linelist$date_onset ``` ## Truncation Right truncation in infectious disease data occurs when only individuals who have experienced a specific event by a certain time can be included in the linelist. This leads to an underestimate of recent cases or death, and is especially relevant for ongoing outbreaks where recent cases might not have been recorded. It can also happen if cases are no longer recorded after a certain point in time. Right-truncated outbreak data, in particular line list data, can give the impression that the incidence is decreasing ($R$ < 1), however this can be an artefact resulting from the fact the data is right-truncated, and the outbreak can be stable or growing. By default {simulist} simulates an outbreak from start to finish. Therefore, the line list or contact data contain all cases and outcomes. In order to get data that is more representative of ongoing outbreak dynamics where recent cases are not yet recorded and may be revised upwards in the future the `truncate_linelist()` function can be applied. Re-simulating a simple line list using `sim_linelist()` with a lognormal reporting delay with `meanlog = 2` and `sdlog = 0.5`. ```{r, sim-linelist} # set seed to produce small line list set.seed(3) linelist <- sim_linelist( contact_distribution = contact_distribution, infectious_period = infectious_period, prob_infection = 0.5, onset_to_hosp = onset_to_hosp, onset_to_death = onset_to_death, reporting_delay = function(x) rlnorm(n = x, meanlog = 2, sdlog = 0.5) ) # first 6 rows of linelist head(linelist) ``` The _truncation time_ is the time/date at which we want to take a snapshot of the line list and see what it would have looked like on that day (i.e. real-time during the outbreak). By default `truncate_linelist()` will truncate from 14 days before the end of the outbreak (defined as the maximum date in the line list). ::: {.alert .alert-primary} Here we define the time between the latest, or user-specified date, and the time point at which data is truncated as the _truncation point_. In the plot below we show the _truncation time_ as a vertical line. If the date of reporting falls after the truncation time, then the case is removed from the line list, if it falls before the date of reporting but after the hospital admission and/or outcome date they are set to `NA`. ```{r prep-linelist-events-trunc} tidy_linelist <- linelist %>% pivot_longer( cols = c("date_onset", "date_reporting", "date_admission", "date_outcome") ) %>% mutate(ordering_value = ifelse(name == "date_onset", value, NA)) %>% # nolint consecutive_mutate_linter mutate(case_name = reorder(case_name, ordering_value, min, na.rm = TRUE)) # nolint consecutive_mutate_linter truncation_day <- 14 trunc_date <- max(tidy_linelist$value, na.rm = TRUE) - truncation_day ``` ```{r plot-linelist-events-trunc} #| fig.alt: > #| A dot plot with the event dates in the line list plotted a points on the #| figure, connected by horizontal lines. One row in the dot plot corresponds #| to one case (i.e. one row in the line list). The y-axis label is #| "Case name", and the x-axis label is "Event date". The event types are #| "Date admission" (red square), "Date Onset" (blue circle), "Date Outcome" #| (green triangle), and "Date Reporting" (purple diamond). The plot shows #| the distribution of delay times between each event for each individual in #| the line list, with the y-axis order by earliest date of symptom onset at #| the bottom. There is a vertical dashed line showing when the truncation day #| is. ggplot(data = tidy_linelist) + geom_line( mapping = aes(x = value, y = case_name), linewidth = 0.25 ) + geom_point( mapping = aes( x = value, y = case_name, shape = name, col = name ), size = 2 ) + geom_vline(xintercept = trunc_date, linetype = 2) + scale_x_date(name = "Event date", date_breaks = "2 week") + scale_y_discrete(name = "Case name") + scale_color_brewer( palette = "Set1", name = "Event type", labels = c("Date Admission", "Date Onset", "Date Outcome", "Date Reporting") ) + scale_shape_manual( name = "Event type", labels = c( "Date Admission", "Date Onset", "Date Outcome", "Date Reporting" ), values = c(15, 16, 17, 18) ) + theme_bw() + theme(legend.position = "bottom", axis.text.y = element_text(size = 4)) ``` In this example several cases are removed as the reporting date occurs after the truncation time. ::: ```{r truncate-ll} linelist_trunc <- truncate_linelist(linelist = linelist) ``` `truncate_linelist()` assumes the event which is pertinent to the truncation of the data is the date of reporting (`$date_reporting`), as this is likely the date the case was first input into the line list, even if this date is before the date of hospital admission (`$date_admission`) or date of outcome (`$date_outcome`). Right-truncating line list date using {simulist} removes individuals (rows) when the sampled truncation time is less recent than the reporting date. For cases where the rows are kept because the truncation time is more recent than the truncation event, but there are subsequent events, such as date of hospitalisation, that are more recent than the truncation time, these events dates are set to `NA`. The reasoning being that these events are assumed to have not been reported yet. The `truncate_linelist()` function can also be used to reflect if the reporting of cases during an outbreak stopped on a given date. It is also possible to specify the _truncation time_ as the number of days, weeks, months or years since the start of the outbreak. Here we right-truncate the line list 3 months since the start of the outbreak. ```{r truncate-ll-forward} linelist_trunc <- truncate_linelist( linelist = linelist, truncation_day = 3, unit = "months", direction = "forward" ) ``` ## Truncate to emulate different stages of outbreak It is not possible to simulate a line list with `sim_linelist()` that is mid-way through an outbreak[^1]. This can make it difficult to generate outbreak data sets that resemble early outbreak dynamics where incidence is increasing, or mid-outbreak, or late in an outbreak as the disease approaches extinction. These types of data sets are useful for testing outbreak analytics method that are applied in real-time outbreak scenarios. The `truncate_linelist()` function enables converting a complete line list from `sim_linelist()` into a within-outbreak line list. We can simulate another outbreak, this time with more cases, and plot the complete line list by aggregating to daily incidence using the {incidence2} package. ::: {.alert .alert-info} For a full overview of how to visualise outbreak data simulated with {simulist} see the [Visualising simulated data](vis-linelist.html) vignette. ::: ```{r sim-linelist-incidence} # set seed to produce single wave outbreak set.seed(3) linelist <- sim_linelist( contact_distribution = contact_distribution, infectious_period = infectious_period, prob_infection = 0.5, onset_to_hosp = onset_to_hosp, onset_to_death = onset_to_death, outbreak_size = c(500, 5000) ) # create incidence object weekly_inci <- incidence( x = linelist, date_index = "date_onset", interval = "epiweek", complete_dates = TRUE ) ``` ```{r sim-linelist-plot-incidence} #| fig.alt: > #| An incidence curve (epicurve) of cases from symptom onset aggregated by #| week. The y-axis is the count, the x-axis is the date index. The #| weekly incidence increases from week 1 to week 6, then it gradually #| declines. plot(weekly_inci) ``` By looking at the outbreak, we can pick three points to truncate: 1) early in the outbreak when the epicurve is growing (1st February 2023, epiweek 5), 2) in the middle of the outbreak (15th March 2023, epiweek 11), and 3) late in the outbreak when the number of cases is declining and the end of the outbreak is near (1st May 2023, epiweek 18). We can specify a `` object to the `truncation_day` argument in `truncate_linelist()` to specify the date we want to apply the right truncation to. ```{r trunc-stages} linelist_early <- truncate_linelist( linelist = linelist, truncation_day = as.Date("2023-02-01") ) inci_early <- incidence( x = linelist_early, date_index = "date_onset", interval = "epiweek", complete_dates = TRUE ) linelist_mid <- truncate_linelist( linelist = linelist, truncation_day = as.Date("2023-03-15") ) inci_mid <- incidence( x = linelist_mid, date_index = "date_onset", interval = "epiweek", complete_dates = TRUE ) linelist_late <- truncate_linelist( linelist = linelist, truncation_day = as.Date("2023-05-01") ) inci_late <- incidence( x = linelist_late, date_index = "date_onset", interval = "epiweek", complete_dates = TRUE ) ``` Next we repeat this procedure of creating data sets for early, mid, and late in the outbreak. For this example we will use a reporting delay to illustrate the issue of under-reporting of recent cases when there is a time delay between symptom onset and reporting. ```{r sim-linelist-plot-incidence-reporting-delay} # set seed to produce single wave outbreak set.seed(3) linelist <- sim_linelist( contact_distribution = contact_distribution, infectious_period = infectious_period, prob_infection = 0.5, onset_to_hosp = onset_to_hosp, onset_to_death = onset_to_death, reporting_delay = function(x) rlnorm(n = x, meanlog = 2, sdlog = 0.5), outbreak_size = c(500, 5000) ) ``` ```{r trunc-stages-reporting-delay, fig.show="hold", out.width="30%"} linelist_early <- truncate_linelist( linelist = linelist, truncation_day = as.Date("2023-02-01") ) inci_early <- incidence( x = linelist_early, date_index = "date_onset", interval = "epiweek", complete_dates = TRUE ) linelist_mid <- truncate_linelist( linelist = linelist, truncation_day = as.Date("2023-03-15") ) inci_mid <- incidence( x = linelist_mid, date_index = "date_onset", interval = "epiweek", complete_dates = TRUE ) linelist_late <- truncate_linelist( linelist = linelist, truncation_day = as.Date("2023-05-01") ) inci_late <- incidence( x = linelist_late, date_index = "date_onset", interval = "epiweek", complete_dates = TRUE ) ``` ```{r plot-trunc-stages-reporting-delay, fig.show="hold", out.width="30%"} #| fig.alt: > #| Three incidence curves (epicurves) in a single row, the left plot is the #| outbreak snapshot early in the outbreak, the middle plot is the outbreak #| and the right plot is the end of the outbreak. The cases are aggregated #| by week. The y-axis is the count, the x-axis is the date index. This plot #| shows fewer cases in the days before the truncation day due to #| right-truncation of the reporting delay. plot(inci_early) + ggtitle("Early") + theme(plot.title = element_text(size = 25, hjust = 0.5)) plot(inci_mid) + ggtitle("Mid") + theme(plot.title = element_text(size = 25, hjust = 0.5)) plot(inci_late) + ggtitle("Late") + theme(plot.title = element_text(size = 25, hjust = 0.5)) ``` Comparing the two sets of the three plots you can see how in the latter applying right truncation gives the impression that cases are declining. These truncated line lists can be used to test methods that estimate the real-time reproduction number such as [{EpiNow2}](https://epiforecasts.io/EpiNow2/) or [{epinowcast}](https://package.epinowcast.org/). [^1]: `sim_linelist()` simulates an outbreak to extinction except in cases where the number of infected individuals exceeds the maximum outbreak size specified in the `outbreak_size` argument in `sim_linelist()`, which by default is `r max(eval(formals(sim_linelist)$outbreak_size))` where the line list returned is an ongoing outbreak.