context("stat_density") # and stat_ydensity
test_that("compute_density succeeds when variance is zero", {
dens <- compute_density(rep(0, 10), NULL, from = 0.5, to = 0.5)
expect_equal(dens$n, rep(10, 512))
})
test_that("compute_density returns useful df and throws warning when <2 values", {
expect_warning(dens <- compute_density(1, NULL, from = 0, to = 0))
expect_equal(nrow(dens), 1)
expect_equal(names(dens), c("x", "density", "scaled", "ndensity", "count", "n"))
expect_type(dens$x, "double")
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.