dag.search
(or brute.search
) for minimal sufficiency by counting for each sufficient adjustment set A how many smaller sufficient ones that are contained in A exist.msas(adjSets)
searchRes
component of a DAG (or the output of brute.search
, which is used by dag.adjust
to produce searchRes
).-1
for each insufficient adjustment set, and for sufficient ones the number of smaller sufficient ones contained in it.viv
, summary_dagRdag
d3<-demo.dag3();
d3s<-dag.search(d3);
msas(d3s$searchRes);
bs<-brute.search(d3);
msas(bs);
Run the code above in your browser using DataLab