Nothing
if (!interactive()) pdf(NULL)
test_that("conjugate HDE helpers work", {
expect_equal(.betaHDE(1, 2), 0)
expect_equal(.betaHDE(2, 1), 1)
expect_equal(.betaHDE(10, 10), 0.5)
expect_equal(.gammaHDE(1, 1), 0)
expect_equal(.gammaHDE(0, 1), 0)
expect_equal(.gammaHDE(10, 10), 90)
})
test_that("gaussian priors are converted from variance or precision", {
prec_prior <- list("mu" = 0, "prec" = 0.01)
conv_prior <- .convert_gaussian_priors(prec_prior)
expect_equal(conv_prior$sd, 10)
var_prior <- list("mu" = 0, "var" = 100)
conv_prior <- .convert_gaussian_priors(var_prior)
expect_equal(conv_prior$sd, 10)
s2_prior <- list("mu" = 0, "s2" = 100)
conv_prior <- .convert_gaussian_priors(s2_prior)
expect_equal(conv_prior$sd, 10)
})
test_that("conjugate MV Sample formatting helper works", {
mv1 <- matrix(1, 10, 10)
expect_warning(out1 <- .mvSampleFormatting(mv1))
expect_equal(colnames(out1), paste0("b", 1:10))
})
test_that("conjugate raises expected errors", {
set.seed(123)
s1 <- rnorm(10, 10, 1)
res1 <- conjugate(
s1 = s1, method = "t",
priors = NULL,
cred.int.level = 0.89, hypothesis = "equal", rope_range = c(-1, 1)
)
expect_equal(res1$summary$HDE_1, 9.975688, tolerance = 1e-6)
s2 <- rnorm(10, 15, 2)
expect_error(conjugate(
s1 = s1, s2 = s2, method = "t",
priors = NULL,
cred.int.level = 0.89, hypothesis = "bad", rope_range = c(-1, 1)
))
expect_error(conjugate(
s1 = s1, s2 = s2, method = "t",
priors = NULL,
cred.int.level = 0.89, hypothesis = "lesser", rope_range = 1
))
df <- data.frame(value = c(s1, s2), group = rep(c("a", "b"), each = 10))
expect_error(conjugate(
value ~ group, s2,
method = "t",
priors = NULL,
cred.int.level = 0.89, hypothesis = "lesser", rope_range = 1
))
})
test_that("conjugate class works", {
out <- conjugate(
s1 = rnorm(10, 1), s2 = rnorm(10), method = "t",
priors = list(mu = c(0, 0), sd = c(3, 3)),
rope_range = c(-1, 1), rope_ci = 0.89,
cred.int.level = 0.89, hypothesis = "equal",
bayes_factor = 0.1
)
x <- invisible(summary(out))
expect_s3_class(x, "conjugatesummary")
sink(tempfile())
print(x)
print(out)
sink()
})
test_that("Posterior Predictive works", {
x <- conjugate(
s1 = rnorm(10, 10, 1), s2 = rnorm(10, 13, 1.5), method = "t",
priors = list(list(mu = 10, sd = 2),
list(mu = 10, sd = 2)),
rope_range = c(-8, 8), rope_ci = 0.89,
cred.int.level = 0.89, hypothesis = "unequal",
bayes_factor = c(50, 55)
)
p <- .post_pred_conj(x)
s <- .post_pred_conj(x, 10)
expect_s3_class(p, "ggplot")
expect_true(is.numeric(unlist(s)))
})
test_that("conjugate plot method works", {
s1 <- c(
43.8008289810423, 44.6084228775479, 68.9524219823026, 77.442231894233,
45.2302703709121, 53.8005757403944, 33.8292993277826, 59.7018653972819,
57.8433869136181, 52.8224097917938
)
s2 <- c(
84.7860854952772, 53.38097452501, 52.352235256613, 49.2369049504088,
72.7625716991815, 62.6982283802374, 61.2347595388326, 45.298878516913,
39.6312400911458, 66.9134811003628
)
out <- conjugate(
s1 = s1, s2 = s2, method = "t",
priors = list(mu = c(0, 0), sd = c(10, 10)),
rope_range = c(-8, 8), rope_ci = 0.89,
cred.int.level = 0.89, hypothesis = "equal"
)
plot <- plot(out)
expect_s3_class(plot, "ggplot")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.