| plot.network_plot {SeqNet} | R Documentation |
Plot function for 'network_plot' class
## S3 method for class 'network_plot' plot(x, ...)
x |
A 'network_plot' object obtained from |
... |
Additional arguments passed to |
Creates a plot of the network and returns a graph object.
See plot_network for details.
nw <- random_network(10) g <- plot(nw) # Can change the plot by modifying the instance `g`. # For example, make vertex size and edge width twice as big. g$edge.width <- 2 * g$edge.width g$vertex.size <- 2 * g$vertex.size # Change color of verticies, edges, and vertex labels. g$edge.color <- "orange" g$vertex.color <- "navy" g$vertex.label.color <- "white" plot(g)