Prints a Network object.
# S3 method for Network
print(
x,
title = NA,
title.color = "black",
seed = sample(1:10000, 1),
layout = igraph::layout.auto,
legend = c(-0.5, -1.5, 0.5, -1.45),
legend.cex = 1,
bg = NULL,
legend.text.color = "black",
legend.gradient = NULL,
vertex.color = "grey80",
vertex.size = 9,
vertex.frame.color = NA,
vertex.label.color = "grey40",
vertex.label.cex = 1.1,
edge.label.color = "black",
edge.label.cex = 0.9,
...
)
The Network object.
The title of the plot. NULL
eliminates title. NA
uses title attribute of the Network object.
The color of the title.
The seed to use in plotting the graph.
igraph layout
to use.
The coordinates of the legend. See
color.legend
for more information.
character expansion factor. NULL
and NA
are
equivalent to 1.0. See mtext
for more information.
The color to be used for the background of the device region. See
par
for more information.
The legend text color.
A vector of ordered colors to use for the gradient fills in the network edges.
The font family to be used for vertex labels.
The size of the vertex.
The color of the vertex border.
The color of the labels.
The font size for vertex labels.
The color for the edge labels. Use NA
to
remove.
The font size of the edge labels.
Other Arguments passed to plot.igraph
.