Description Usage Arguments Value Author(s) References Examples
View source: R/plot.NetworkSperical.R
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.
1 2 3 |
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
1 2 3 4 5 6 7 | #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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.