Description Usage Arguments Details Value Author(s) See Also Examples
This function can be used to retrieve a numerical vector which will
describe which edges in a graph would be removed if recipEdges
is set to combined
during plotting.
1 | removedEdges(graph)
|
graph |
An object of class |
This function will simply detect which (if any) edges in a graph would be removed during combination of reciprocated edges.
A numerical vector, where the values correspond to removed edges.
Jeff Gentry
edgeNames
,
agopen
, buildEdgeList
1 2 3 4 5 | set.seed(123)
V <- letters[1:10]
M <- 1:4
g1 <- randomGraph(V, M, .2)
removedEdges(g1)
|
Loading required package: graph
Loading required package: BiocGenerics
Loading required package: parallel
Attaching package: 'BiocGenerics'
The following objects are masked from 'package:parallel':
clusterApply, clusterApplyLB, clusterCall, clusterEvalQ,
clusterExport, clusterMap, parApply, parCapply, parLapply,
parLapplyLB, parRapply, parSapply, parSapplyLB
The following objects are masked from 'package:stats':
IQR, mad, sd, var, xtabs
The following objects are masked from 'package:base':
Filter, Find, Map, Position, Reduce, anyDuplicated, append,
as.data.frame, basename, cbind, colMeans, colSums, colnames,
dirname, do.call, duplicated, eval, evalq, get, grep, grepl,
intersect, is.unsorted, lapply, lengths, mapply, match, mget,
order, paste, pmax, pmax.int, pmin, pmin.int, rank, rbind,
rowMeans, rowSums, rownames, sapply, setdiff, sort, table, tapply,
union, unique, unsplit, which, which.max, which.min
Loading required package: grid
[1] 7 12 13 17 18 19 22 23 24 25 27 28 29 30 31 32
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.