Nothing
# Test case: No dataframe provided
test_that("No dataframe provided", {
expect_error(smdi_vis(), "No dataframe provided.")
})
# Test case: All variables missing
test_that("All variables missing", {
data <- data.frame(a = c(NA, NA, NA), b = c(NA, NA, NA), c = c(NA, NA, NA))
obj <- smdi_vis(data)
vdiffr::expect_doppelganger("ggplot2 bar", obj)
})
# Test case: stratified plot
test_that("Stratified plot", {
data <- data.frame(a = c(1, NA, NA, 3), b = c(1, 0, 1, 1), S = c("A", "B", "A", "B"))
obj <- smdi_vis(data, strata = "S")
vdiffr::expect_doppelganger("ggplot2 bar stratified", obj)
})
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.