taxalist {vegsoup} | R Documentation |
Function taxalist
simply returns a list of taxon names and a corresponding
unique key "abbr"
. A listing for a particular plot (s single releveƩ) can be
obtained with function relevee
.
## S4 method for signature 'Vegsoup' taxalist(obj, layered) ## S4 method for signature 'Vegsoup' relevee(obj, plot, format = FALSE)
obj |
A |
layered |
Return species list with layers, defaults to |
format |
logical. Format output. |
plot |
Index or character giving a rowname ( |
If layered = TRUE
also return all layers where a species occurs.
A "data.frame"
with two columns if layered = FALSE
, or three
columns if layered = FALSE
. The first giving the unique taxon key
('abbr'
), the second the full taxon name 'taxon'
, and the last
the layer ('layer'
) where the taxon occurs in.
The taxalist method will not print anything to console.
Roland Kaiser
data(barmstein) x <- barmstein # including abbreviations l <- taxalist(x) head(l) l <- taxalist(x, layered = TRUE) head(l) # scientific taxon names only taxon(x) # plot listing relevee(x, 1) relevee(x, "bs01") # equal to the above relevee(x, 1, format = TRUE)