plot.NetworkSperical {netbiov} | R Documentation |
Global layout style:
A visualization of a network in a spherical form. The node with the highest degree is placed in the center, and its neighbors are plotted around this node in a circular manner. Whenever a node is encountered with multiple neighbors, the neighbors are plotted into the direction of that node. This process continues until all nodes are placed. This gives a compact spherical view of the network.
## S3 method for class 'NetworkSperical' plot(x, mo="in", tkplot = FALSE, v.lab=FALSE, v.size=1, bg="black", ...)
x |
|
mo |
|
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
#Example 1 g <- barabasi.game(500, directed = TRUE) xx <- plot.NetworkSperical(g, mo = "in", tkplot=FALSE) # Example 2 g <- erdos.renyi.game(100, p=.1) xx <- plot.NetworkSperical(g)