plants {asuR} | R Documentation |
The height of all species of Fabaceae and Rosaceae growing in Switzerland. As well as a factor indicating whether the species can grow to a shrub, tree, or stays herbaceous.
data(plants)
A data frame with 460 observations on the following 3 variables.
family
Fabaceae
Rosaceae
height
type
herb
shrub
tree
thomas.fabbro@unibas.ch
data(plants) tapply(plants$height, list(plants$family, plants$type), mean) tapply(plants$height, list(plants$family, plants$type), summary) tapply(plants$height, list(plants$family, plants$type), length) table(plants$family, plants$type)