Learn R Programming

sna (version 0.41)

nties: Find the Number of Possible Ties in a Given Graph or Stack

Description

nties returns the number of possible edges in each element of dat, given mode and diag.

Usage

nties(dat, mode="digraph", diag=FALSE)

Arguments

dat
A graph or stack thereof
mode
One of ``digraph'', ``graph'', and ``hgraph''
diag
A boolean indicating whether or not diagonal entries (loops) should be treated as valid data; ignored for hypergraphic (``hgraph'') data

Value

  • The number of possible edges, or a vector of the same

Details

nties is used primarily to automate maximum edge counts for use with normalization routines.

Examples

Run this code
#How many possible edges in a loopless digraph of order 15?
nties(rgraph(15),diag=FALSE)

Run the code above in your browser using DataLab