View source: R/old_taxa--taxonomy--s3.R
all_names | R Documentation |
Return the names of data that can be used with functions in the taxa package that use [non-standard evaluation](http://adv-r.had.co.nz/Computing-on-the-language.html) (NSE), like [filter_taxa()].
obj$all_names(tables = TRUE, funcs = TRUE, others = TRUE, warn = FALSE) all_names(obj, tables = TRUE, funcs = TRUE, others = TRUE, warn = FALSE)
obj |
([taxonomy()] or [taxmap()]) The object containing taxon information to be queried. |
tables |
This option only applies to [taxmap()] objects. If 'TRUE', include the names of columns of tables in 'obj$data' |
funcs |
This option only applies to [taxmap()] objects. If 'TRUE', include the names of user-definable functions in 'obj$funcs'. |
others |
This option only applies to [taxmap()] objects. If 'TRUE', include the names of data in 'obj$data' besides tables. |
builtin_funcs |
This option only applies to [taxmap()] objects. If 'TRUE', include functions like [n_supertaxa()] that provide information for each taxon. |
warn |
option only applies to [taxmap()] objects. If 'TRUE', warn if there are duplicate names. Duplicate names make it unclear what data is being referred to. |
'character'
Other NSE helpers:
data_used
,
get_data()
,
names_used
# Get the names of all data accesible by non-standard evaluation
all_names(ex_taxmap)
# Dont include the names of automatically included functions.
all_names(ex_taxmap, builtin_funcs = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.