View source: R/transactions2DF.R
transactions2DF | R Documentation |
Convert transactions back into data.frames by combining the items for the same variable into a single column.
transactions2DF(transactions, itemLabels = FALSE)
transactions |
an object of class arules::transactions. |
itemLabels |
logical; use the complete item labels (variable=level) as the levels in the data.frame? By default, only the levels are used. |
Returns a data.frame.
Michael Hahsler
Other preparation:
CBA_ruleset()
,
discretizeDF.supervised()
,
mineCARs()
,
prepareTransactions()
data("iris")
iris_trans <- prepareTransactions(Species ~ ., iris)
iris_trans
# standard conversion
iris_df <- transactions2DF(iris_trans)
head(iris_df)
# use item labels in the data.frame
iris_df2 <- transactions2DF(iris_trans, itemLabels = TRUE)
head(iris_df2)
# Conversion of transactions without variables in itemInfo
data("Groceries")
head(transactions2DF(Groceries), 2)
# Conversion of transactions prepared for classification
g2 <- prepareTransactions(`shopping bags` ~ ., Groceries)
head(transactions2DF(g2), 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.