plot.imlist {spatstat.geom} | R Documentation |
Plot a List of Images
Description
Plots an array of pixel images.
Usage
## S3 method for class 'imlist'
plot(x, ..., plotcommand="image",
equal.ribbon=FALSE, ribmar=NULL)
## S3 method for class 'imlist'
image(x, ..., equal.ribbon=FALSE, ribmar=NULL)
## S3 method for class 'listof'
image(x, ..., equal.ribbon=FALSE, ribmar=NULL)
Arguments
x |
An object of the class |
... |
Arguments passed to |
equal.ribbon |
Logical. If |
ribmar |
Numeric vector of length 4 specifying the margins around the
colour ribbon, if |
plotcommand |
Character string giving the name of a function
to be used to display each image.
Recognised by |
Details
These are methods for the generic plot commands
plot
and image
for the class "imlist"
.
They are currently identical.
An object of class "imlist"
represents a list of pixel images.
(The outdated class "listof"
is also handled.)
Each entry in the list x
will be displayed as a pixel image,
in an array of panels laid out on the same graphics display,
using plot.solist
. Individual panels are plotted by
plot.im
.
If equal.ribbon=FALSE
(the default),
the images are rendered using different colour maps,
which are displayed as colour ribbons beside each image.
If equal.ribbon=TRUE
, the images are rendered using the
same colour map, and a single colour ribbon will be displayed at the right
side of the array.
The colour maps and the placement of the colour ribbons are
controlled by arguments ...
passed to plot.im
.
Value
Null.
Author(s)
Adrian Baddeley Adrian.Baddeley@curtin.edu.au, Rolf Turner rolfturner@posteo.net and Ege Rubak rubak@math.aau.dk.
See Also
Examples
## bei.extra is a list of pixel images
Y <- solapply(bei.extra, scaletointerval)
image(Y, equal.ribbon=TRUE, main="", col.ticks="red", col.axis="red")