Nothing
# Can drop rows by scientificName or taxonID
dct_filmies |>
dct_drop_row(scientificName = "Cephalomanes atrovirens Presl")
dct_filmies |>
dct_drop_row(taxonID = "54133783")
# Can drop multiple rows at once by providing multiple values for
# scientificName or taxonID
dct_filmies |>
dct_drop_row(
scientificName = c(
"Cephalomanes atrovirens Presl",
"Trichomanes crassum Copel."
)
)
dct_filmies |>
dct_drop_row(
taxonID = c(
"54133783", "54133783"
)
)
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.