Nothing
context("rankagg")
test_that("rankagg throws error", {
skip_on_cran()
skip_if_not_installed("vegan")
data(dune.taxon, package = 'vegan')
dat <- dune.taxon
set.seed(1234)
dat$abundance <- round(rlnorm(n = nrow(dat), meanlog = 5, sdlog = 2), 0)
out <- rankagg(data = dat, datacol = "abundance", rank = "Genus")
expect_error(rankagg(datacol = "abundance", rank = "Genus"))
expect_error(rankagg(data = dat, datacol = "abundance"))
expect_is(out, "data.frame")
expect_equal(out[1, 2], 13)
})
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.