plot.splitppp {spatstat} | R Documentation |
Plots a list of point patterns.
## S3 method for class 'splitppp' plot(x, ..., main, arrange=TRUE, nrows=NULL, ncols=NULL, main.panel=NULL, mar.panel=c(2,1,1,2), panel.begin=NULL, panel.end=NULL, panel.args=NULL, plotcommand="plot")
x |
A named list of point patterns,
typically obtained from |
... |
Arguments passed to |
main |
Overall heading for the plot. |
arrange |
Logical flag indicating whether to plot the point patterns
side-by-side on a single page ( |
nrows,ncols |
Optional. The number of rows/columns in the plot layout
(assuming |
main.panel |
Optional. A character string, or a vector of character strings, giving the headings for each of the point patterns. |
mar.panel |
Optional value of the graphics parameter |
panel.begin,panel.end |
Optional. Functions that will be executed before and after each panel is plotted. See Details. |
panel.args |
Internal use only. |
plotcommand |
Optional. Character string containing the name of the command that should be executed to plot each panel. |
This is the plot
method for the class "splitppp"
.
It is typically used to plot the result of the function
split.ppp
but it may also be used to plot any list
of point patterns created by the user.
The argument x
should be a named list of point patterns
(objects of class "ppp"
, see ppp.object
).
Each of these point patterns will be plotted in turn
using plot.ppp
.
The arguments panel.begin
and panel.end
may be functions (taking the argument i
for the panel
number) that will be executed before and after each panel is plotted.
Alternatively, they may be objects of some class that can be plotted
with the generic plot
command. They will be plotted before and
after each panel is plotted.
Null.
Adrian Baddeley Adrian.Baddeley@csiro.au http://www.maths.uwa.edu.au/~adrian/ and Rolf Turner r.turner@auckland.ac.nz
split.ppp
,
plot.ppp
,
ppp.object
# Multitype point pattern data(amacrine) plot(split(amacrine))