1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/paths.R
\name{eccentricity}
\alias{eccentricity}
\title{Eccentricity of the vertices in a graph}
\usage{
eccentricity(
graph,
vids = V(graph),
...,
weights = NULL,
mode = c("all", "out", "in", "total")
)
}
\arguments{
\item{graph}{The input graph, it can be directed or undirected.}
\item{vids}{The vertices for which the eccentricity is calculated.}
\item{...}{These dots are for future extensions and must be empty.}
\item{weights}{Possibly a numeric vector giving edge weights. If this is
\code{NULL} and the graph has a \code{weight} edge attribute, then the
attribute is used. If this is \code{NA} then no weights are used (even if
the graph has a \code{weight} attribute). In a weighted graph, the length
of a path is the sum of the weights of its constituent edges.}
\item{mode}{Character constant, gives whether the shortest paths to or from
the given vertices should be calculated for directed graphs. If \code{out}
then the shortest paths \emph{from} the vertex, if \verb{in} then \emph{to}
it will be considered. If \code{all}, the default, then the graph is treated
as undirected, i.e. edge directions are not taken into account. This
argument is ignored for undirected graphs.}
}
\value{
\code{eccentricity()} returns a numeric vector, containing the
eccentricity score of each given vertex.
}
\description{
The eccentricity of a vertex is its shortest path distance from the farthest
other node in the graph.
}
\details{
The eccentricity of a vertex is calculated by measuring the shortest
distance from (or to) the vertex, to (or from) all vertices in the graph,
and taking the maximum.
This implementation ignores vertex pairs that are in different components.
Isolate vertices have eccentricity zero.
}
\examples{
g <- make_star(10, mode = "undirected")
eccentricity(g)
}
\references{
Harary, F. Graph Theory. Reading, MA: Addison-Wesley, p. 35,
1994.
}
\seealso{
\code{\link[=radius]{radius()}} for a related concept,
\code{\link[=distances]{distances()}} for general shortest path calculations.
Other paths:
\code{\link{all_simple_paths}()},
\code{\link{diameter}()},
\code{\link{distance_table}()},
\code{\link{graph_center}()},
\code{\link{radius}()}
}
\concept{paths}
\section{Related documentation in the C library}{\href{https://igraph.org/c/html/latest/igraph-Structural.html#igraph_eccentricity_dijkstra}{\code{igraph_eccentricity_dijkstra()}}.}
|