https://github.com/cran/bayestestR
Tip revision: 23ea3229abe72a5f23dcf3a4cfcd3478d744b536 authored by Dominique Makowski on 20 June 2019, 11:50:03 UTC
version 0.2.2
version 0.2.2
Tip revision: 23ea322
test-p_direction.R
context("p_direction")
test_that("p_direction", {
set.seed(333)
x <- bayestestR::distribution_normal(10000, 1, 1)
pd <- bayestestR::p_direction(x)
testthat::expect_equal(as.numeric(pd), 84.2, tolerance = 0.1)
testthat::expect_equal(as.numeric(p_direction(x, method = "kernel")), 84.2, tolerance = 0.1)
testthat::expect_equal(nrow(p_direction(data.frame(replicate(4, rnorm(100))))), 4)
testthat::expect_is(pd, "p_direction")
testthat::expect_equal(tail(capture.output(print(pd)), 1), "pd = 84.14%")
})