LIST | R Documentation |
Provides the generic function LIST()
and the methods to create a
list representation from objects of the classes itemMatrix,
transactions, and tidLists.
LIST(from, ...)
## S4 method for signature 'itemMatrix'
LIST(from, decode = TRUE)
## S4 method for signature 'transactions'
LIST(from, decode = TRUE)
## S4 method for signature 'tidLists'
LIST(from, decode = TRUE)
from |
the object to be converted into a list. |
... |
further arguments. |
decode |
a logical controlling whether the items/transactions are
decoded from the column numbers internally used by
itemMatrix to the names stored in the object
|
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).
a list primitive.
Michael Hahsler
Other import/export:
DATAFRAME()
,
pmml
,
read
,
write()
data(Adult)
### default coercion (same as as(Adult[1:5], "list"))
LIST(Adult[1:5])
### coercion without item decoding
LIST(Adult[1:5], decode = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.