Revision 1b89ec86b6a914c4d45bee998d08eed1ef23f57f authored by Dominique Makowski on 20 July 2020, 08:30:03 UTC, committed by cran-robot on 20 July 2020, 08:30:03 UTC
1 parent d2eac42
Raw File
test-point_estimate.R
if (require("rstanarm", quietly = TRUE) && require("brms", quietly = TRUE)) {
  if (require("insight")) {
    m <- insight::download_model("stanreg_merMod_5")
    p <- insight::get_parameters(m, effects = "all")

    test_that("point_estimate", {
      testthat::expect_equal(
        point_estimate(m, effects = "all")$Median,
        point_estimate(p)$Median,
        tolerance = 1e-3
      )
    })

    m <- insight::download_model("brms_zi_3")
    p <- insight::get_parameters(m, effects = "all", component = "all")

    test_that("point_estimate", {
      testthat::expect_equal(
        point_estimate(m, effects = "all", component = "all")$Median,
        point_estimate(p)$Median,
        tolerance = 1e-3
      )
    })
  }
}
back to top