c.farules | R Documentation |
farules()
and combine them into a single
object. An error is thrown if some argument does not inherit from the farules()
class.Take a sequence of instances of S3 class farules()
and combine them into a single
object. An error is thrown if some argument does not inherit from the farules()
class.
## S3 method for class 'farules'
c(..., recursive = FALSE)
... |
A sequence of objects of class |
recursive |
This argument has currently no function and is added here
only for compatibility with generic |
An object of class farules()
that is created by merging the
arguments together, i.e. by concatenating the rules and row-binding the
statistics of given objects.
Michal Burda
farules()
, searchrules()
ori1 <- farules(rules=list(letters[1:3],
letters[2:5]),
statistics=matrix(runif(16), nrow=2))
ori2 <- farules(rules=list(letters[4],
letters[3:8]),
statistics=matrix(runif(16), nrow=2))
res <- c(ori1, ori2)
print(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.