vis_clustered_graphs
visualizes clustered_graphs using a list of
clustered graphs created with clustered_graphs
.
vis_clustered_graphs( graphs, node.size.multiplier = 1, node.min.size = 0, node.max.size = 200, normalise.node.sizes = TRUE, edge.width.multiplier = 1, center = 1, label.size = 0.8, labels = FALSE, legend.node.size = 45, pdf.name = NULL, ... )
graphs |
|
---|---|
node.size.multiplier |
|
node.min.size |
|
node.max.size |
|
normalise.node.sizes |
|
edge.width.multiplier |
|
center |
|
label.size |
|
labels |
|
legend.node.size |
|
pdf.name |
|
... | Arguments to pass to |
vis_clustered_graphs
plots
a list
of igraph
objects created by the clustered_graphs
function.
clustered_graphs
returns a list of graph objects representing
the clustered ego-centered network data;
Brandes, U., Lerner, J., Lubbers, M. J., McCarty, C., & Molina, J. L. (2008). Visual Statistics for Collections of Clustered Graphs. 2008 IEEE Pacific Visualization Symposium, 47-54.
clustered_graphs
for creating clustered graphs objects
data("egor32") # Simplify networks to clustered graphs, stored as igraph objects graphs <- clustered_graphs(egor32, "country") # Visualise par(mfrow = c(2,3)) vis_clustered_graphs( graphs[1:5] )