Summarize a folderh
Summarize an object of class folderh
.
## S3 method for class 'folderh' summary(object, ...)
object
: object of class folderh
that is a list of data frames....
: further arguments passed to or from other methods.A list, each element of it containing the summary of the corresponding element of object
. This list has an attribute attr(, "keys")
(see folderh
).
Rachid Boumaza, Pierre Santagostini, Smail Yousfi, Gilles Hunault, Sabine Demotes-Mainard
folderh
: object of class folderh
.
# First example mtgfile <- system.file("extdata/plant1.mtg", package = "dad") x <- read.mtg(mtgfile) fh1 <- as.folderh(x, classes = c("P", "A", "M")) summary(fh1) # Second example data(roseleaves) roses <- roseleaves$rose stems <- roseleaves$stem leaves <- roseleaves$leaf leaflets <- roseleaves$leaflet fh2 <- folderh(roses, "rose", stems, "stem", leaves, "leaf", leaflets) summary(fh2)