S4 objects will be coerced to lists, where each slot in the input object
becomes a member of the output list. This way allows to explore content and
solve problems when validity checks fail.
Usage
# S4 method for vegtable
as.list(x, ...)
# S4 method for coverconvert
as.list(x, ...)
Value
An object of class list.
Arguments
x
an object of class coverconvert or vegtable
...
further arguments passed from or to other methods.
## Head of slot 'taxonNames'class(Easplist)
head(Easplist@taxonNames)
## The same after coercing to listEasplist <- as.list(Easplist)
class(Easplist)
head(Easplist$taxonNames)