A simple way to define an undirected graph by means of a single model formula.
UG(f)
Arguments
f: a single model formula without response
Details
The undirected graph G=(V,E) is defined by a set of nodes V and a set of pairs E. The set of pairs is defined by the set of interactions in the formula. Interactions define complete subgraphs (not necessarily maximal) of the UG. The best way is to specify interactions that match the cliques of the undirected graph. This is the standard way to define graphical models for contingency tables. Remember that some hierarchical models are not graphical, but they imply the same graph.
The function returns the edge matrix of the graph, i.e. a square Boolean matrix of order equal to the number of nodes of the graph and a one in position (i,j) if there is an arrow from j to i and zero otherwise. By default this matrix has ones along the main diagonal. For UGs this matrix is symmetric. The dimnames of the edge matrix are the nodes of the UG.
Returns
a Boolean matrix with dimnames, the adjacency matrix of the undirected graph.
References
Lauritzen, S. (1996). Graphical models. Oxford: Clarendon Press.
Author(s)
Giovanni M. Marchetti
See Also
fitConGraph, fitCovGraph, DAG
Examples
## X independent of Y given ZUG(~ X*Z + Y*Z)# The saturated modelUG(~ X*Y*Z)## The model without three-way interactions has the same graphUG(~ X*Y + Y*Z + Z*X)UG(~(X + Y + Z)^2)## Butterfly model defined from the cliquesUG(~ mec*vec*alg + alg*ana*sta)## Some isolated nodesUG(~x*y*z + a + b)