taxalist: Species and Relevee Listings

Description Usage Arguments Details Value Note Author(s) Examples

Description

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.

Usage

1
2
3
4
5
## S4 method for signature 'Vegsoup'
taxalist(obj, layered)

## S4 method for signature 'Vegsoup'
relevee(obj, plot, format = FALSE)

Arguments

obj

A Vegsoup* object.

layered

Return species list with layers, defaults to FALSE. See ‘Details’.

format

logical. Format output.

plot

Index or character giving a rowname (rownames(obj)), defaults to 1, the first plot in the data set.

Details

If layered = TRUE also return all layers where a species occurs.

Value

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.

Note

The taxalist method will not print anything to console.

Author(s)

Roland Kaiser

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
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)

vegsoup documentation built on Feb. 24, 2021, 3 a.m.