
Parse text that defines a the constraints
parse_constraints(constraints, obsnames)
A data frame with columns indicating the variables being constrained, what the values of their parents are for the constraints, and the operator defining the constraint (equality or inequalities).
A list of character strings
Vector of names of the observed variables in the graph
constrainttext <- "X(Z = 1) >= X(Z = 0)"
obsnames <- c("Z", "X", "Y")
parse_constraints(constraints = constrainttext, obsnames = obsnames)
Run the code above in your browser using DataLab