ancestorGraph {dagitty}R Documentation

Ancestor Graph

Description

Creates the induced subgraph containing only the vertices in v, their ancestors, and the edges between them. All other vertices and edges are discarded.

Usage

ancestorGraph(x, v = NULL)

Arguments

x

the input graph, a DAG, MAG, or PDAG.

v

variable names.

Details

If the input graph is a MAG or PDAG, then all *possible* ancestors will be returned (see Examples).

Examples

g <- dagitty("dag{ z <- x -> y }")
ancestorGraph( g, "z" )

g <- dagitty("pdag{ z -- x -> y }")
ancestorGraph( g, "y" ) # includes z


[Package dagitty version 0.3-4 Index]