Provides the generic function LIST
and the S4 methods to create a list
representation from objects based on '>itemMatrix
(e.g.,
'>transactions
, '>tidLists
, or
'>itemsets
). These methods can be used for the coercion
to a list.
LIST(from, …)# S4 method for itemMatrix
LIST(from, decode = TRUE)
# S4 method for transactions
LIST(from, decode = TRUE)
# S4 method for tidLists
LIST(from, decode = TRUE)
the object to be converted into a list.
further arguments.
a list primitive.
Using LIST
with decode = TRUE
is equivalent to
the standard coercion as(x, "list")
.
LIST
returns the object from
as a list of vectors.
Each vector represents one row of the
'>itemMatrix
(e.g., items in a
transaction or itemset).
decode
,
coerce,itemMatrix,list-method
,
itemMatrix-class
,
DATAFRAME
# NOT RUN {
data(Adult)
### default coercions (same as as(Adult[1:5], "list"))
LIST(Adult[1:5])
### coercion without item decoding
LIST(Adult[1:5], decode = FALSE)
# }
Run the code above in your browser using DataLab