plot.hero_adjacent {hero} | R Documentation |
Plot a hero_adjacent
object
Description
Plot a hero_adjacent
object. x$nbrs
is
used to construct a
sparseMatrix-class
object. The
default behavior is to plot the sparse matrix using the
image
function. However, if the
igraph package is installed, a graph is made using
graph_from_adjacency_matrix
and
then plotted using plot.igraph
.
Usage
## S3 method for class 'hero_adjacent'
plot(x, ...)
Arguments
x |
A |
... |
Additional arguments passed to
|
Examples
coords = expand.grid(1:4, 1:4)
a = adjacent(coords, digits = 1)
plot(a)
[Package hero version 0.6 Index]