Nothing
source(system.file("common", "friedmanData.R", package = "dbarts"), local = TRUE)
n.g <- 5L
if (getRversion() >= "3.6.0") {
oldSampleKind <- RNGkind()[3L]
suppressWarnings(RNGkind(sample.kind = "Rounding"))
}
g <- sample(n.g, length(testData$y), replace = TRUE)
if (getRversion() >= "3.6.0") {
suppressWarnings(RNGkind(sample.kind = oldSampleKind))
rm(oldSampleKind)
}
sigma.b <- 1.5
b <- rnorm(n.g, 0, sigma.b)
testData$y <- testData$y + b[g]
testData$g <- g
testData$b <- b
rm(b, sigma.b, g, n.g)
# test that rbart works with keepTrainingFits = FALSE
rbartFit <- dbarts::rbart_vi(
y ~ x, testData, group.by = g,
n.samples = 2L, n.burn = 0L, n.thin = 2L, n.chains = 2L,
n.trees = 3L, n.threads = 1L,
keepTrainingFits = FALSE,
verbose = FALSE
)
expect_inherits(rbartFit, "rbart")
expect_true(is.null(rbartFit$yhat.train))
expect_true(is.null(rbartFit$yhat.train.mean))
rm(rbartFit)
# test that rbart works with k as a variable
# test thanks to Bruno Tancredi
k <- 1.8
expect_inherits(
dbarts::rbart_vi(
y ~ x, testData, group.by = g,
n.samples = 2L, n.burn = 0L, n.thin = 2L, n.chains = 2L,
n.trees = 3L, n.threads = 1L,
k = k,
keepTrainingFits = FALSE,
verbose = FALSE
),
"rbart"
)
rm(k)
rm(testData)
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.