This layout is related to the stress-minimization algorithm known as Kamada-Kawai (available as the 'kk' layout), but uses another optimization strategy. It generally have better runtime, quality, and stability compared to the Kamada-Kawai layout and is thus generally preferred. The sparse version of the layout have better performance (especially on larger networks) at the expense of layout quality, but will generally outperform many other algorithms for large graphs in both runtime and quality (e.g. the 'drl' layout from igraph).
weights: An expression evaluated on the edge data to provide edge weights for the layout. Currently ignored for the sparse version
niter: number of iterations during stress optimization
tolerance: stopping criterion for stress optimization
mds: should an MDS layout be used as initial layout (default: TRUE)
bbox: constrain dimension of output. Only relevant to determine the placement of disconnected graphs.
x, y: Expressions evaluated on the node data giving coordinates along x and/or y axis to fix nodes to. You can chose to only fix selected nodes by leaving the remaining nodes with NA values.
circular: ignored
pivots: The number of pivot nodes.
Returns
A data.frame with the columns x, y, circular as well as any information stored as node variables in the tbl_graph object.
References
Gansner, E. R., Koren, Y., & North, S. (2004). Graph drawing by stress majorization. In International Symposium on Graph Drawing (pp. 239-250). Springer, Berlin, Heidelberg.