plot.splitppp {spatstat}R Documentation

Plot a List of Point Patterns

Description

Plots a list of point patterns.

Usage

  ## S3 method for class 'splitppp':
  plot(x, ..., main, arrange=TRUE, nrows=NULL, ncols=NULL)

Arguments

x A named list of point patterns, typically obtained from split.ppp.
... Arguments passed to plot.ppp which control the appearance of each plot panel.
main Overall heading for the plot.
arrange Logical flag indicating whether to plot the point patterns side-by-side on a single page (arrange=TRUE) or plot them individually in a succession of frames (arrange=FALSE).
nrows,ncols Optional. The number of rows/columns in the plot layout (assuming arrange=TRUE). You can specify either or both of these numbers.

Details

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.

Value

Null.

Author(s)

Adrian Baddeley adrian@maths.uwa.edu.au http://www.maths.uwa.edu.au/~adrian/ and Rolf Turner rolf@math.unb.ca http://www.math.unb.ca/~rolf

See Also

split.ppp, plot.ppp, ppp.object

Examples

# Multitype point pattern
 data(amacrine)
 plot(split(amacrine))

[Package spatstat version 1.11-3 Index]