graph2lavaan {SEMgraph}R Documentation

Graph to lavaan model

Description

Convert an igraph object to a model (lavaan syntax).

Usage

graph2lavaan(graph, nodes = V(graph)$name, ...)

Arguments

graph

A graph as an igraph object.

nodes

Subset of nodes to be included in the model. By default, all the input graph nodes will be included in the output model.

...

Currently ignored.

Value

A model in lavaan syntax.

Author(s)

Mario Grassi mario.grassi@unipv.it

Examples


# Graph (igraph object) to structural model in lavaan syntax
model <- graph2lavaan(sachs$graph)
cat(model, "\n")


[Package SEMgraph version 1.2.1 Index]