Nothing
test_that(paste("model_sizes creates correct lists with graphs"), {
data_prepared <- bdsm::economic_growth[,1:6] %>%
bdsm::feature_standardization(
excluded_cols = c(country, year, gdp)
) %>%
bdsm::feature_standardization(
group_by_col = year,
excluded_cols = country,
scale = FALSE
)
bma_results <- bma(small_model_space, df = data_prepared, round= 3, dilution = 0)
size_graphs <- model_sizes(bma_results)
expect_equal(class(size_graphs), "list")
expect_equal(length(size_graphs), 3)
expect_equal(class(size_graphs[[1]]), c("gg","ggplot"))
expect_equal(class(size_graphs[[2]]), c("gg","ggplot"))
expect_equal(class(size_graphs[[3]]), c("gg","ggplot","ggarrange"))
})
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.