This is a convenience function to quickly and clearly define a set of causal
models. Supply a list of formulas for each model, using either c(). Formulas
should be of the form child ~ parent and describe each path in your model.
Multiple children of a single parent can be combined into a single formula:
child ~ parent1 + parent2.
Usage
define_model_set(..., .common = NULL)
Value
A list of models, each of class matrix and DAG.
Arguments
...
Named arguments, which each are a lists of formulas defining the
paths of a causal model.
.common
A list of formulas that contain causal paths that are common
to each model.