upper.tri.remove: Remove the Upper Triangles of Adjacency Matrices in a Graph...

View source: R/dataprep.R

upper.tri.removeR Documentation

Remove the Upper Triangles of Adjacency Matrices in a Graph Stack

Description

Returns the input graph stack, with the upper triangle entries removed/replaced as indicated.

Usage

upper.tri.remove(dat, remove.val=NA)

Arguments

dat

a graph or graph stack.

remove.val

the value with which to replace the existing upper triangles.

Details

upper.tri.remove is simply a convenient way to apply g[upper.tri(g)]<-remove.val to an entire stack of adjacency matrices at once.

Value

The updated graph stack.

Author(s)

Carter T. Butts buttsc@uci.edu

See Also

upper.tri, lower.tri.remove, diag.remove

Examples

#Generate a random graph stack
g<-rgraph(3,5)
#Remove the upper triangles
g<-upper.tri.remove(g)

sna documentation built on May 29, 2024, 1:46 a.m.

Related to upper.tri.remove in sna...