RoughSets (version 1.3-7)

[.RuleSetRST: The [. method for "RuleSetRST" objects

Description

Subsetting a set of decision rules.

Usage

# S3 method for RuleSetRST
[(x, i, ...)

Value

A subset of rules.

Arguments

x

a "RuleSetRST" object from which to extract rules(s) or in which to replace rules(s). See RI.LEM2Rules.RST.

i

integer indices specifying elements to be extracted or replaced.

...

the other parameters.

Author

Andrzej Janusz

Examples

Run this code
###########################################################
## Example : Subsetting a set of decision rules
###########################################################
data(RoughSetData)
hiring.data <- RoughSetData$hiring.dt

rules <- RI.LEM2Rules.RST(hiring.data)

rules

# taking a subset of rules
rules[1:3]
rules[c(TRUE,FALSE,TRUE,FALSE)]

# replacing a subset of rules
rules2 <- rules
rules2[c(2,4)] <- rules[c(1,3)]
rules2

Run the code above in your browser using DataCamp Workspace