Learn R Programming

SeqNet (version 1.1.3)

plot.network_plot: Plot function for 'network_plot' class

Description

Plot function for 'network_plot' class

Usage

# S3 method for network_plot
plot(x, ...)

Arguments

x

A 'network_plot' object obtained from plot.network or plot_network.

...

Additional arguments passed to plot.igraph.

Value

Creates a plot of the network and returns a graph object. See plot_network for details.

Examples

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataLab