https://github.com/cran/bayestestR
Revision 40f7c88ddf855896018cf20ec8a7ac5fbd0ea2fb authored by Dominique Makowski on 27 January 2020, 05:30:28 UTC, committed by cran-robot on 27 January 2020, 05:30:28 UTC
1 parent d8462ad
Raw File
Tip revision: 40f7c88ddf855896018cf20ec8a7ac5fbd0ea2fb authored by Dominique Makowski on 27 January 2020, 05:30:28 UTC
version 0.5.1
Tip revision: 40f7c88
test-point_estimate.R
if (requireNamespace("rstanarm", quietly = TRUE)) {
  context("point_estimate")

  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