| [.RuleSetRST {RoughSets} | R Documentation |
[. method for "RuleSetRST" objectsSubsetting a set of decision rules.
## S3 method for class 'RuleSetRST' x[i, ...]
x |
a |
i |
integer indices specifying elements to be extracted or replaced. |
... |
the other parameters. |
A subset of rules.
Andrzej Janusz
########################################################### ## 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