Learn R Programming

vegtable (version 0.1.3)

coverconvert-class: Cover conversion tables.

Description

Cover conversion tables for '>vegtable objects.

Arguments

Slots

value

List containing the levels of each scale.

conversion

List with the respective start and end cut levels for the scale levels.

Details

This class implements conversions from different cover scales in percentage cover. For transformations to percentage cover, the function transform should be than used.

See Also

tv2coverconvert, braun_blanquet.

Examples

Run this code
# NOT RUN {
library(vegtable)
showClass("coverconvert")

## Add a custom scale
Scale <- new("coverconvert")
Scale$my_scale <- list(
	value=factor(c("low","medium","high"), levels=c("low","medium","high")),
	conversion=c(0,50,75,100))
summary(Scale)
# }

Run the code above in your browser using DataLab