Learn R Programming

SEMgraph (version 1.2.2)

dagitty2graph: Graph conversion from dagitty to igraph

Description

Convert a dagitty object to a igraph object.

Usage

dagitty2graph(dagi, verbose = FALSE, ...)

Value

An igraph object.

Arguments

dagi

A graph as a dagitty object ("dag" or "pdag").

verbose

A logical value. If TRUE, the output graph is shown. This argument is FALSE by default.

...

Currently ignored.

Author

Mario Grassi mario.grassi@unipv.it

Examples

Run this code

# Conversion from igraph to dagitty  (and viceversa)
dagi <- graph2dagitty(sachs$graph, verbose = TRUE)
graph <- dagitty2graph(dagi, verbose = TRUE)

Run the code above in your browser using DataLab