sub-.RuleSetRST function

The [. method for "RuleSetRST" objects

The [. method for "RuleSetRST" objects

Subsetting a set of decision rules.

## S3 method for class 'RuleSetRST' x[i, ...]

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.

Returns

A subset of rules.

Examples

########################################################### ## 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

Author(s)

Andrzej Janusz