display {spam} | R Documentation |
Graphially Represent the Nonzero Entries
Description
The function represents the nonzero entries in a simple bicolor plot.
Usage
display(x, ...)
Arguments
x |
matrix of class |
... |
any other arguments passed
to |
Details
spam.getOption("imagesize")
determines if the sparse matrix is
coerced into a matrix and the plotted with image.default
or if
the matrix is simply represented as a scatterplot with
pch="."
. The points are scaled according to
cex*getOption("spam.cex")/(nrow + ncol)
.
For some devices or for non-square matrices,
cex
needs probably some adjustment.
Author(s)
Reinhard Furrer
See Also
Examples
set.seed(13)
smat <- spam_random(8)
par(mfcol=c(1,2), pty='s')
options(spam.imagesize = 1000)
display(smat)
options(spam.imagesize = 10)
display(smat, cex=.25)
# very large but very sparse matrix
smat <- spam_random(2^14, distribution=rnorm, density=1e-5, verbose=TRUE)
par(mfcol=c(1, 1), mai=c(.4,.4,.1,.1), pty='s')
display(smat)
[Package spam version 2.10-0 Index]