summary.RuleSetFRST: The summary function of rules based on FRST

Description Usage Arguments Value Author(s) Examples

View source: R/IOFunctions.R

Description

This function enables the output of a summary of the rule induction methods.

Usage

1
2
## S3 method for class 'RuleSetFRST'
summary(object, ...)

Arguments

object

a "RuleSetFRST" object. See RI.hybridFS.FRST and RI.GFRS.FRST.

...

the other parameters.

Value

a description that contains the following information:

Author(s)

Lala Septem Riza

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
###########################################################
## Example 1: Regression problem
###########################################################
data(RoughSetData)
decision.table <- RoughSetData$housing7.dt

control <- list(type.aggregation = c("t.tnorm", "lukasiewicz"), type.relation =
                c("tolerance", "eq.3"), t.implicator = "lukasiewicz")
res.1 <- RI.hybridFS.FRST(decision.table, control)

summary(res.1)
###########################################################
## Example 2: Classification problem
##############################################################
data(RoughSetData)
decision.table <- RoughSetData$pima7.dt

control <- list(type.aggregation = c("t.tnorm", "lukasiewicz"), type.relation =
                c("tolerance", "eq.3"), t.implicator = "lukasiewicz")
res.2 <- RI.hybridFS.FRST(decision.table, control)

summary(res.2)

RoughSets documentation built on Dec. 16, 2019, 1:37 a.m.