change | R Documentation |
A generic function that applies different altering methods for different types of objects (of certain classes).
change(x, ...)
x |
An object of a particular class. |
... |
Arguments to be passed to a specific method. |
For the time being, this function is designed to change truth table objects (only). Future versions will likely add class methods for different other objects.
The changed object.
Adrian Dusa
## Not run:
# An example to change a QCA truth table
library(QCA)
ttLF <- truthTable(LF, outcome = SURV, incl.cut = 0.8)
minimize(ttLF, include = "?")
# excluding contradictory simplifying assumptions
minimize(
change(ttLF, exclude = findRows(type = 2)),
include = "?"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.