TFtest | R Documentation |
Check if logical expressions return what you expect with a truth table
TFtest(..., na = TRUE)
... |
Expression(s) with logical operators to be evaluated, with single letters for variables. Each expression is to be separated with a comma |
na |
Logical: should NAs be included in the truth table? DEFAULT: TRUE |
This is a nice way to check operator precedence, see Syntax
Truth table as data.frame with TRUE and FALSE (and NA) combinations
Berry Boessenkool, berry-b@gmx.de, Mrz 2016
logical
TFtest(!a & !b)
TFtest(!a & !b, a&b, !(a&b))
TFtest(!a & !b | c)
TFtest(!a & !b | c, na=FALSE)
TFtest(!a)
TFtest(a&b|c, (a&b)|c, a&(b|c), na=FALSE) # AND has precedence over OR
TFtest(a|b, xor(a,b), na=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.