as.list.TidySet {BaseSet} | R Documentation |
Convert to list
Description
Converts a TidySet to a list.
Usage
## S3 method for class 'TidySet'
as.list(x, ...)
Arguments
x |
A TidySet object to be coerced to a list. |
... |
Placeholder for other arguments that could be passed to the method. Currently not used. |
Value
A list.
Examples
r <- data.frame(sets = c("A", "A", "A", "B", "C"),
elements = c(letters[1:3], letters[2:3]),
fuzzy = runif(5),
info = rep_len(c("important", "very important"), 5))
TS <- tidySet(r)
TS
as.list(TS)
[Package BaseSet version 0.9.0 Index]