summary.electrograph {ElectroGraph}R Documentation

summary.electrograph

Description

Given an electrograph object, summarize the qualities of its nodes.

Usage

## S3 method for class 'electrograph':
summary(object, ...)
## S3 method for class 'electrograph':
print(x, ...)

Arguments

x, object An object of class ``electrograph''.
... (no further options currently available)

Value

"print" returns an abbreviated list of contents of the object. "summary" Returns a list containing several measures:

in.deg, out.deg The sums of the inbound and outbound weights of each tie from each node.
cent.geodesic Geodesic centrality: the sums of the inverses of the minimum distances to each other node in the system.
cent.electro Electro-social centrality: the sums of the effective conductances from a node to each other node in the system. Defined only if electrograph.exam has been run on the object.
current.cent Electro-betweenness measure: the average current through each node, given each node pair for which the effective conductance was measured.

Author(s)

Andrew C. Thomas <act@acthomas.ca>

Examples


sources <- c(1,2,3,4)
sinks <- c(2,3,1,5)
socio <- electrograph(cbind(sources,sinks))

print(socio)
summary(socio)


[Package ElectroGraph version 0.2.0 Index]