var_all {surveytable} | R Documentation |
Are all the variables true? (Logical AND)
Description
Create a new variable which is true if all of the variables in a list of variables are true.
Usage
var_all(newvr, vrs)
Arguments
newvr |
name of the new variable to be created |
vrs |
vector of logical variables |
Value
Survey object
See Also
Other variables:
var_any()
,
var_case()
,
var_collapse()
,
var_copy()
,
var_cross()
,
var_cut()
,
var_not()
Examples
set_survey(namcs2019sv)
var_all("Medicare and Medicaid", c("PAYMCARE", "PAYMCAID"))
tab("Medicare and Medicaid")
[Package surveytable version 0.9.4 Index]