#' LinkRank Matrix
#' @description Calculates the LinkRank Matrix, according to Kim et al. [1].
#' @param G Google Matrix. Output of \code{\link{GoogleMatrix}} function
#' @param pr PageRank vector. Output of \code{\link{pageRank}} function
#' @return LinkRank Matrix
#' @details "Similar to the definition of PageRank, LinkRank
#' of a particular link should be equal to the probability that
#' a random walker follows the link from node \emph{i} to node \emph{j}" [1].
#' LinkRank from node \emph{i} to node \emph{j} can be defined as
#' \eqn{L_{ij} = \pi_{i} * G_{ij}}, where
#' \eqn{\pi_{i}} is the \emph{i}th element of the PageRank vector,
#' and \eqn{G_{ij}} is the element of the Google Matrix.
#'
#' @references
#' [1] Kim Y, Son SW, Jeong H (2010).
#' "Finding Communities in Directed Networks."
#' Physical Review E 81, 016103.
#' \doi{10.1103/PhysRevE.81.016103}
#'
#' @export
#' @examples
#' # Generate an arbitrary 100 by 100 adjacency matrix with zeros and ones
#' # Remove loops
#' A <- matrix(rbinom(100 * 100, 1, 0.2), ncol = 100, nrow = 100)
#' diag(A) <- 0
#'
#' # Calculate Google Matrix
#' G <- GoogleMatrix(A)
#'
#' # Calculate PageRank vector
#' pr <- pageRank(A)
#'
#' # Calculate LinkRank Matrix
#' LinkRank(G,pr)
LinkRank <- function (G,pr)
{
n <- length(pr)
L <- matrix(0,n,n)
for (i in 1:n)
L[i,] <- pr[i] * G[i,]
return(L)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.