test_that("rsfm options", {
set.seed(123456)
##-- Spatial structure
data("neigh_RJ")
neigh_RJ_sf <- sf::st_as_sf(neigh_RJ)
##-- Individuals and regions
n_reg <- length(neigh_RJ)
n_id <- sample(x = 3:5, size = n_reg, replace = TRUE)
coefs <- c(0.1, -0.3)
tau <- 1 # Scale of spatial effect
##-- Data
data <- rsurv(n_id = n_id,
coefs = coefs, cens = 0.5, scale = FALSE,
cens_type = "right", hazard = "weibull",
hazard_params = hazard_params <- list(weibull = list(alpha = 0.8, variant = 0)),
spatial = "ICAR",
neigh = neigh_RJ, tau = tau, confounding = "linear", proj = "none")
##-- Models
weibull_inla <- rsfm(data = data,
formula = surv(time = L, event = status) ~ X1 + X2,
family = "weibull", model = "none",
proj = "rhz", nsamp = 1000, approach = "inla")
rsfm_inla <- rsfm(data = data,
formula = surv(time = L, event = status) ~ X1 + X2,
family = "weibull", area = "reg",
model = "r_besag", neigh = neigh_RJ,
proj = "rhz", nsamp = 1000, approach = "inla")
rsfm_inla_sf <- rsfm(data = data,
formula = surv(time = L, event = status) ~ X1 + X2,
family = "weibull", area = "reg",
model = "r_besag", neigh = neigh_RJ_sf,
proj = "rhz", nsamp = 1000, approach = "inla")
rsfm_inla2 <- rsfm(data = data,
formula = surv(time = L, event = status) ~ X1 + X2,
family = "weibull", area = "reg",
model = "r_besag", neigh = neigh_RJ,
proj = "rhz", nsamp = 1000, approach = "inla",
fast = FALSE)
rsfm_inla2_sf <- rsfm(data = data,
formula = surv(time = L, event = status) ~ X1 + X2,
family = "weibull", area = "reg",
model = "r_besag", neigh = neigh_RJ_sf,
proj = "rhz", nsamp = 1000, approach = "inla",
fast = FALSE)
testthat::skip_on_appveyor()
testthat::skip_on_cran()
testthat::expect_equal(object = length(weibull_inla$restricted), 0)
# if(!is.na(findOpenBUGS())) testthat::expect_length(object =
# rsfm(data = data,
# formula = surv(time = L, event = status) ~ X1 + X2,
# family = "weibull", model = "none",
# proj = "rhz", nsamp = 10, burnin = 0, lag = 1,
# approach = "mcmc")$unrestricted,
# 3)
# if(is.na(findOpenBUGS())) testthat::expect_error(object =
# rsfm(data = data,
# formula = surv(time = L, event = status) ~ X1 + X2,
# family = "weibull", model = "none",
# proj = "rhz", nsamp = 10, burnin = 0, lag = 1,
# approach = "mcmc"))
testthat::expect_equal(object = length(rsfm_inla$restricted), 4)
testthat::expect_equal(object = length(rsfm_inla_sf$restricted), 4)
testthat::expect_equal(object = length(rsfm_inla2$restricted), 4)
testthat::expect_equal(object = length(rsfm_inla2_sf$restricted), 4)
testthat::expect_error(
rsfm(data = data,
formula = L ~ X1 + X2,
family = "weibull", model = "none",
proj = "rhz", nsamp = 1000, approach = "inla")
)
testthat::expect_error(
rsfm(data = data,
family = "weibull", model = "none",
proj = "rhz", nsamp = 1000, approach = "inla")
)
testthat::expect_error(
rsfm(data = data,
formula = surv(time = L, event = status) ~ X1 + X2,
family = "exponential.cure", model = "none",
proj = "rhz", nsamp = 1000, approach = "inla")
)
testthat::expect_error(
rsfm(data = data,
formula = surv(time = L, event = status) ~ X1 + X2,
family = "weibull", model = "none",
proj = "hh", nsamp = 1000, approach = "inla")
)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.