Converts a TidySet to a list.
Usage
# S3 method for 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.
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
#> elements sets fuzzy info
#> 1 a A 0.5039183 important
#> 2 b A 0.3883758 very important
#> 3 c A 0.6682984 important
#> 4 b B 0.1420947 very important
#> 5 c C 0.6904965 important
as.list(TS)
#> Warning: Dropping information on the coercion.
#> $A
#> a b c
#> 0.5039183 0.3883758 0.6682984
#>
#> $B
#> b
#> 0.1420947
#>
#> $C
#> c
#> 0.6904965
#>