"pairs"(..., plot=TRUE, eps=NULL)
"linim"
),
a pixel image (object of class "im"
),
or a named argument to be passed to pairs.default
.
TRUE
, the scatterplot matrix is plotted.
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.
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.
pairs.default
,
pairs.im
fit <- lppm(chicago ~ marks * (x+y))
lam <- predict(fit)
do.call(pairs, lam)
Run the code above in your browser using DataLab