R/layout_eigen.R

Defines functions layout_tbl_graph_eigen

Documented in layout_tbl_graph_eigen

#' Place nodes according to their eigenvalues
#'
#' This layout is based on the idea of spectral layouts where node coordinates
#' are calculated directly by decomposing a matrix representation of the graph
#' and extracting the eigenvectors.
#'
#' @param graph A tbl_graph object
#' @param type The type of matrix to extract the eigenvectors from. Either
#' `'laplacian'` or `'adjacency'`
#' @param eigenvector The eigenvector to use for coordinates. Either `'smallest'`
#' or `'largest'`
#' @param circular ignored
#'
#' @return A data.frame with the columns `x`, `y`, `circular` as
#' well as any information stored as node variables in the tbl_graph object.
#'
#' @family layout_tbl_graph_*
#'
#' @author The underlying algorithm is implemented in the graphlayouts package
#' by David Schoch
#'
#' @importFrom graphlayouts layout_with_eigen
layout_tbl_graph_eigen <- function(graph, type = 'laplacian', eigenvector = 'smallest', circular = FALSE) {
  type <- match.arg(type, c('laplacian', 'adjacency'))
  eigenvector <- match.arg(eigenvector, c('smallest', 'largest'))
  xy <- layout_with_eigen(graph, type = type, ev = eigenvector)
  nodes <- data_frame0(x = xy[,1],y = xy[,2], circular = FALSE)
  combine_layout_nodes(nodes, as_tibble(graph, active = 'nodes'))
}

Try the ggraph package in your browser

Any scripts or data that you put into this service are public.

ggraph documentation built on Oct. 10, 2022, 1:05 a.m.