Description Usage Arguments Value Methods Examples
This generic function takes an object that inherits from the graph
class and a node in that graph and returns a vector containing information
about all other nodes that are accessible from the given node. The
methods are vectorized so that index
can be a vector.
1 2 3 4 |
object |
An instance of the appropriate graph class. |
index |
A character vector specifying the nodes for which accessibilty information is wanted. |
The methods should return a named list of integer vectors. The
names
of the list correspond to the names of the supplied
nodes. For each element of the list the returned vector is named. The
names of the vector elements correspond to the nodes that are
accessible from the given node. The values in the vector indicate how
many edges are between the given node and the node in the return vector.
An object of class graph.
An instance of the clusterGraph
class.
A character
vector of indices corresponding to nodes in the
graph.
1 2 3 4 |
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, xtabs
The following objects are masked from 'package:base':
Filter, Find, Map, Position, Reduce, anyDuplicated, append,
as.data.frame, cbind, colnames, 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, rownames, sapply, setdiff, sort, table, tapply, union,
unique, unsplit, which, which.max, which.min
$A
B C D E F G H J
1 2 1 2 2 1 1 1
$B
A C D E F G H J
1 2 1 2 2 1 1 1
$D
A B C E F G H J
1 1 1 1 1 1 1 1
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.