The carbon retained by leaves measured in kg/ha is recorded for forty-one different plots of mountainous regions of Navarre (Spain), depending on the forest classification: areas with 90% or more beech trees (Fagus Sylvatica) are labeled monospecific, while areas with many species of trees are labeled multispecific.
FAGUS
A data frame with 41 observations on the following 3 variables:
plot
(plot number)
carbon
(carbon retained by leaves measured in kg/ha)
type
(a factor with levels monospecific
and multispecific
)
Gobierno de Navarra and Gestion Ambiental Viveros y Repoblaciones de Navarra, 2006. The data were obtained within the European Project FORSEE.
Ugarte, M. D., Militino, A. F., and Arnholt, A. T. 2015. Probability and Statistics with R, Second Edition. Chapman & Hall / CRC.
ggplot(data = FAGUS, aes(x = type, y = carbon)) + geom_boxplot()