graphID.decompose: Determine generic identifiability by Tian Decomposition and...

View source: R/graphID.R

graphID.decomposeR Documentation

Determine generic identifiability by Tian Decomposition and HTC

Description

Split a graph into mixed Tian components and solve each separately using the HTC.

Usage

graphID.decompose(
  L,
  O,
  decomp.if.acyclic = TRUE,
  test.globalID = TRUE,
  test.genericID = TRUE,
  test.nonID = TRUE
)

Arguments

L

Adjacency matrix for the directed part of the path diagram/mixed graph; an edge pointing from i to j is encoded as L[i,j]=1 and the lack of an edge between i and j is encoded as L[i,j]=0. There should be no directed self loops, i.e. no i such that L[i,i]=1.

O

Adjacency matrix for the bidirected part of the path diagram/mixed graph. Edges are encoded as for the L parameter. Again there should be no self loops. Also this matrix will be coerced to be symmetric so it is only necessary to specify an edge once, i.e. if O[i,j]=1 you may, but are not required to, also have O[j,i]=1.

decomp.if.acyclic

A logical value indicating whether an input graph that is acyclic is to be decomposed before applying identifiability criteria.

test.globalID

A logical value indicating whether or not global identifiability is checked.

test.genericID

A logical value indicating whether or not a sufficient condition for generic identifiability is checked.

test.nonID

A logical value indicating whether or not a condition implying generic non-identifiability is checked.

Value

A list with two named components:

1. Components - a list of lists. Each list represents one mixed Tian component of the graph. Each list contains named components corresponding to which nodes are in the component and results of various tests of identifiability on the component (see the parameter descriptions).

2. Decomp - true if a decomposition occured, false if not.


SEMID documentation built on July 26, 2023, 5:40 p.m.