Produces a scatterplot matrix of the pixel values in two or more pixel images on a linear network.
# S3 method for linim
pairs(..., plot=TRUE, eps=NULL)
Any number of arguments, each of which is either
a pixel image on a linear network (object of class "linim"
),
a pixel image (object of class "im"
),
or a named argument to be passed to pairs.default
.
Logical. If TRUE
, the scatterplot matrix is plotted.
Optional. Spacing between sample points on the network. A positive number.
Invisible. A data.frame
containing the
corresponding pixel values for each image.
The return value also belongs to the class plotpairsim
which has
a plot method, so that it can be re-plotted.
This is a method for the generic function pairs
for the class of pixel images on a linear network.
It produces a square array of plot panels, in which each panel shows a scatterplot of the pixel values of one image against the corresponding pixel values of another image.
At least two of the arguments …
should be a pixel image
on a linear network (object of class "linim"
).
They should be defined on the same linear network,
but may have different pixel resolutions.
First the pixel values of each image are extracted at a
set of sample points equally-spaced across the network.
Then pairs.default
is called to
plot the scatterplot matrix.
Any arguments in …
which are not pixel images will be
passed to pairs.default
to control the plot.
# NOT RUN {
fit <- lppm(chicago ~ marks * (x+y))
lam <- predict(fit)
do.call(pairs, lam)
# }
Run the code above in your browser using DataLab