context("Must calculate the cumulative hazard over [0, tmax] for piecewise constant model")
test_that("`pwe_H`", {
# Generate output - function vectorises with 'time' arg, so we use a vector
# of length > 1 to test this functionality
output <- pwe_H(time = 1:10, cut.pts = c(0, 3, 10, Inf), haz.rates = 1:5)
# check class
expect_is(output, "numeric")
# check values
expect_equal(output, c(2, 4, 6, 9, 12, 15, 18, 21, 24, 27.0001144483108))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.