Nothing
#### Check that estimated_outcomes works ####
# prepare example data
# Load Ebola 1976 outbreak data
data("ebola1976")
# Ebola onset to death distribution comes from Barry et al. 2018
# a gamma distribution with shape = 2.40, scale = 3.33
df_estimated_outcomes <- estimate_outcomes(
data = ebola1976,
delay_density = function(x) dgamma(x, shape = 2.40, scale = 3.33)
)
test_that("`estimated_outcomes` basic functionality", {
expect_s3_class(
df_estimated_outcomes,
"data.frame"
)
expect_identical(
colnames(df_estimated_outcomes),
c(colnames(ebola1976), "estimated_outcomes", "u_t")
)
# expect that columns u_t is within the 0 -- 1 range
# NA values are provisionally not allowed
expect_true(
all(
df_estimated_outcomes$u_t >= 0.0 & df_estimated_outcomes$u_t <= 1.0 &
!is.na(df_estimated_outcomes$u_t)
)
)
# expect that column estimated_outcomes is >= 0
# NA values are provisionally not allowed
expect_true(
all(
df_estimated_outcomes$estimated_outcomes >= 0 &
!is.na(df_estimated_outcomes$estimated_outcomes)
)
)
# expect that estimated_outcomes column is not always increasing
expect_false(
all(diff(df_estimated_outcomes$estimated_outcomes) > 0)
)
expect_snapshot(
head(df_estimated_outcomes)
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.