View source: R/adjustment_sets.R
is_confounder | R Documentation |
Assess if a variable confounds a relationship
is_confounder(.tdy_dag, z, x, y, direct = FALSE)
.tdy_dag |
input graph, an object of class |
z |
a character vector, the potential confounder |
x , y |
a character vector, the variables z may confound. |
direct |
logical. Only consider direct confounding? Default is
|
Logical. Is the variable a confounder?
dag <- dagify(y ~ z, x ~ z)
is_confounder(dag, "z", "x", "y")
is_confounder(dag, "x", "z", "y")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.