arrange nodes in concentric circles around a focal node according to their distance from the focus and keep predefined groups in the same angle range.
layout_with_focus_group(
g,
v,
group,
shrink = 10,
weights = NA,
iter = 500,
tol = 1e-04
)
layout_igraph_focus_group(
g,
v,
group,
shrink = 10,
weights = NA,
iter = 500,
tol = 1e-04,
circular
)
igraph object
id of focal node to be placed in the center
vector indicating grouping of nodes
shrink the reserved angle range for a group to increase the gaps between groups
possibly a numeric vector with edge weights. If this is NULL and the graph has a weight edge attribute, then the attribute is used. If this is NA then no weights are used (even if the graph has a weight attribute). By default, weights are ignored. See details for more.
number of iterations during stress optimization
stopping criterion for stress optimization
not used
matrix of xy coordinates
Be careful when using weights. In most cases, the inverse of the edge weights should be used to ensure that the endpoints of an edges with higher weights are closer together (weights=1/E(g)$weight).
layout_focus The layout_igraph_* function should not be used directly. It is only used as an argument for plotting with 'igraph'.
library(igraph)
g <- sample_islands(4,5,0.8,2)
grp <- as.character(rep(1:4,each = 5))
layout_with_focus_group(g,v = 1, group = grp, shrink = 10)
#> [,1] [,2]
#> [1,] 0.0000000 0.0000000
#> [2,] 0.9815466 0.1912230
#> [3,] 0.1736482 0.9848078
#> [4,] 0.4091893 0.9124495
#> [5,] 0.9221748 0.3867733
#> [6,] -2.9544233 0.5209445
#> [7,] -1.7563621 0.9566567
#> [8,] -1.5913951 2.5431205
#> [9,] -0.3472964 1.9696155
#> [10,] -1.5117815 1.3093956
#> [11,] -1.9696155 -0.3472964
#> [12,] -1.9687319 -0.3522710
#> [13,] -0.3472964 -1.9696155
#> [14,] -1.8986348 -0.6286381
#> [15,] -0.8986339 -0.4386994
#> [16,] 1.9696155 -0.3472964
#> [17,] 0.3472964 -1.9696155
#> [18,] 1.4618360 -1.3649306
#> [19,] 0.4986207 -0.8668203
#> [20,] 2.2740660 -1.9566869