View source: R/association_rules.R
| print.net_association_rules | R Documentation |
Print Method for net_association_rules
## S3 method for class 'net_association_rules'
print(x, ...)
x |
A |
... |
Additional arguments (ignored). |
The input object, invisibly.
trans <- list(c("A","B","C"), c("A","B"), c("B","C","D"), c("A","C","D"))
rules <- association_rules(trans, min_support = 0.3, min_confidence = 0.5,
min_lift = 0)
print(rules)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.