Nothing
p <- plotCor(SDMtune:::t, cor_th = .8, text_size = 4)
test_that("The plot has the correct labels and text size", {
expect_equal(p$plot_env$label, "Spearman's\ncoefficient")
expect_equal(p$labels$x, "Var2")
expect_equal(p$labels$y, "Var1")
expect_equal(p$layers[[2]]$aes_params$size, 4)
})
test_that("The plot as the correct text when using cor_th argument", {
expect_true(
sum(abs(p$layers[[2]]$data$value) >= .8) == nrow(p$layers[[2]]$data)
)
})
test_that("The plot has the correct text when the argument cor_th is NULL", {
p <- plotCor(SDMtune:::t)
expect_identical(length(p$layers[[2]]$data$value), nrow(p$data))
expect_equal(p$layers[[2]]$aes_params$size, 3)
})
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.