Return the Number of (Possibly Directed) Dyads in a Network Object
network.dyadcount
returns the number of possible dyads within a
network
, removing those flagged as missing if desired. If the
network is directed, directed dyads are counted accordingly.
## S3 method for class 'network' network.dyadcount(x, na.omit = TRUE, ...)
x |
an object of class |
na.omit |
logical; omit edges with |
... |
possible additional arguments, used by other implementations |
The return value network.dyadcount
is equal to the number of dyads,
minus the number of NULL
edges (and missing edges, if
na.omit==TRUE
). If x
is directed, the number of directed
dyads is returned. If the network allows loops, the number of possible
entries on the diagnonal is added. Allthough the function does not give an
error on multiplex networks or hypergraphs, the results probably don't make
sense.
The number of dyads in the network
Mark S. Handcock handcock@stat.washington.edu, skyebend
Butts, C. T. (2008). “network: a Package for Managing Relational Data in R.” Journal of Statistical Software, 24(2). https://www.jstatsoft.org/v24/i02/
#Create a directed network with three edges m<-matrix(0,3,3) m[1,2]<-1; m[2,3]<-1; m[3,1]<-1 g<-network(m) network.dyadcount(g)==6 #Verify the directed dyad count g<-network(m|t(m),directed=FALSE) network.dyadcount(g)==3 #nC2 in undirected case
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.