summary.apriori: Print summary of a classification model obtained by APRIORI

summary.aprioriR Documentation

Print summary of a classification model obtained by APRIORI

Description

Print summary of the set of rules in the classification model obtained by APRIORI.

Usage

## S3 method for class 'apriori'
summary(object, ...)

Arguments

object

The model to be printed.

...

Other parameters.

See Also

APRIORI, predict.apriori, print.apriori, apriori-class, apriori

Examples

require ("datasets")
data (iris)
d = discretizeDF (iris,
    default = list (method = "interval", breaks = 3, labels = c ("small", "medium", "large")))
model = APRIORI (d [, -5], d [, 5], supp = .1, conf = .9, prune = TRUE)
summary (model)

fdm2id documentation built on July 9, 2023, 6:05 p.m.