plot.NetworkSperical.startSet {netbiov} | R Documentation |
Global layout style:
A visualization of network in a 'star-like' form. An initial set of nodes are placed in the corner of polygons. The neighbors are then plotted above these nodes in an arc form. Whenever a node is encountered with multiple neighbors, neighbors are plotted in the direction of that node in an arc form. This process continues until all the nodes are placed. This gives a star-like view of the network.
## S3 method for class 'NetworkSperical.startSet' plot(x, mo="in", nc=5, tkplot=FALSE, v.lab=FALSE, v.size=2, bg="black", ...)
x |
|
mo |
|
nc |
|
tkplot |
it is a boolean variable, if it is true, function will use 'tkplot' function to plot a graph, if it is false function will use plot function with the black background. |
... |
|
v.lab |
|
v.size |
|
bg |
|
Plots the input graph object using tkplot
function.
Shailesh Tripathi, Frank Emmert-Streib
n <- 500 g <- barabasi.game(n, directed = TRUE) plot.NetworkSperical.startSet(g, mo = "in", nc = 5, tkplot=FALSE)