Nothing
#' # summary.rgcca_bootstrap
set.seed(0)
data(Russett)
blocks <- list(
agriculture = Russett[, seq(3)],
industry = Russett[, 4:5]
)
fit.rgcca <- rgcca(blocks, ncomp = c(1, 2), method = "rgcca", tau = 1)
test_that("summary.rgcca_bootstrap prints the expected string", {
skip_if_not(as.logical(Sys.getenv("TEST_SNAPSHOTS")))
local_edition(3)
expect_snapshot({
res <- rgcca_bootstrap(fit.rgcca, n_boot = 5, n_cores = 1, verbose = FALSE)
summary(res)
})
})
test_that("summary.rgcca_bootstrap prints the expected string 2", {
skip_if_not(as.logical(Sys.getenv("TEST_SNAPSHOTS")))
local_edition(3)
expect_snapshot({
res <- rgcca_bootstrap(fit.rgcca, n_boot = 2, n_cores = 1, verbose = FALSE)
summary(res, type = "loadings", comp = 2, block = 2)
})
})
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.