summary.electrograph {ElectroGraph} | R Documentation |
Given an electrograph object, summarize the qualities of its nodes.
## S3 method for class 'electrograph': summary(object, ...) ## S3 method for class 'electrograph': print(x, ...)
x, object |
An object of class ``electrograph''. |
... |
(no further options currently available) |
"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. |
Andrew C. Thomas <act@acthomas.ca>
sources <- c(1,2,3,4) sinks <- c(2,3,1,5) socio <- electrograph(cbind(sources,sinks)) print(socio) summary(socio)