tests/testthat/test-simulate_residual.r

test_that("simulate_residuals return an object of class DHARMa", {
  
  check_tf_version <- greta::.internals$checks$check_tf_version
  skip_if_not(check_tf_version())
  
  set.seed(1234)
  
  intercept <- normal(0, 1)
  slope <- normal(0, 1)
  sd_resid <- cauchy(0, 1, truncation = c(0, 100))
  
  x <- runif(100)
  y <- as_data(rnorm(100, 1 + 2 * x, 1))
  
  linpred <- intercept + slope * x
  
  distribution(y) <- normal(linpred, sd_resid)
  
  m <- model(intercept, slope, sd_resid)
  draws <- mcmc(m, warmup = 10, n_samples = 10)
  
  # results 
  expect_s3_class(simulate_residual(draws, y, linpred), "DHARMa")
  
})
lionel68/greta.checks documentation built on July 30, 2022, 11:39 a.m.