Nothing
test_that(paste("jointness computes correct jointness table"), {
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)
jointness_table <- jointness(bma_results, measure = "HCGHM", rho = 0.5, round= 3)
expect_equal(nrow(jointness_table), bma_results[[4]])
expect_equal(ncol(jointness_table), bma_results[[4]])
expect_equal(class(jointness_table), c("matrix","array"))
expect_equal(is.na(jointness_table[[1]]), TRUE)
})
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.