# NOT RUN {
## A Markov chain
DAG(y ~ x, x ~ z, z ~ u)
## Another DAG
DAG(y ~ x + z + u, x ~ u, z ~ u)
## A DAG with an isolated node
DAG(v ~ v, y ~ x + z, z ~ w + u)
## There can be repetitions
DAG(y ~ x + u + v, y ~ z, u ~ v + z)
## Interactions are ignored
DAG(y ~ x*z + z*v, x ~ z)
## A cyclic graph returns an error!
# }
# NOT RUN {
DAG(y ~ x, x ~ z, z ~ y)
# }
# NOT RUN {
## The order can be changed
DAG(y ~ z, y ~ x + u + v, u ~ v + z)
## If you want to order the nodes (topological sort of the DAG)
DAG(y ~ z, y ~ x + u + v, u ~ v + z, order=TRUE)
# }
Run the code above in your browser using DataLab