Usage
Ugraph(M, type = c("plain", "fancy", "weighted"), lay = layout.circle, Vsize = 15,
Vcex = 1, Vcolor = "orangered", VBcolor = "darkred", VLcolor = "black",
prune = FALSE, legend = FALSE, label = "", Lcex = 1.3, PTcex = 4, cut = 0.5,
scale = 10, pEcolor = "black", nEcolor = "grey", main = "")
Arguments
M
(Possibly sparsified) precision matrix
type
A character
indicating the type of graph to be produced. Must be one of: "plain", "fancy", "weighted".
lay
Function call to igraph
determining the placement of vertices. Vsize
A numeric
determining the vertex size.
Vcex
A numeric
determining the size of the vertex labels.
Vcolor
A character
determining the vertex color.
VBcolor
A character
determining the color of the vertex border.
VLcolor
A character
determining the color of the vertex labels.
prune
A logical
determining if vertices of degree 0 should be removed.
legend
A logical
indicating if the graph should come with a legend.
label
A character
giving a name to the legend label.
Lcex
A numeric
determining the size of the legend box.
PTcex
A numeric
determining the size of the exemplary vertex in the legend box.
cut
A numeric
indicating the cut-off for indicating strong edges when type = "fancy"
.
scale
A numeric
representing a scale factor for visualizing strenght of edges when type = "weighted"
.
pEcolor
A character
determining the color of the edges tied to positive precision elements. Only when type = "weighted"
.
nEcolor
A character
determining the color of the edges tied to negative precision elements. Only when type = "weighted"
.
main
A character
giving the main figure title.