plot.network_plot {SeqNet} | R Documentation |
Plot function for 'network_plot' class
Description
Plot function for 'network_plot' class
Usage
## S3 method for class 'network_plot'
plot(x, ...)
Arguments
x |
A 'network_plot' object obtained from |
... |
Additional arguments passed to |
Value
Creates a plot of the network and returns a graph object.
See plot_network
for details.
Examples
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)
[Package SeqNet version 1.1.3 Index]