Nothing
data(data_fungi)
test_that("funguild_assign works", {
skip_on_cran()
db <- get_funguild_db()
data_fungi_FUNGUILD <- funguild_assign(
as.data.frame(tax_table(data_fungi)),
db_funguild = db,
tax_col = "Genus_species"
)
expect_type(data_fungi_FUNGUILD, "list")
expect_identical(ncol(data_fungi_FUNGUILD), 23L)
})
test_that("formattable_pq works", {
skip_on_cran()
if (requireNamespace("formattable", quietly = TRUE)) {
result <- formattable_pq(
data_fungi,
"Height",
min_nb_seq_taxa = 10000,
formattable_args = list("Phylum" = FALSE),
log10trans = TRUE
)
expect_s3_class(result, "formattable")
}
})
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.