Learn R Programming

spatstat.geom (version 3.2-8)

append.psp: Combine Two Line Segment Patterns

Description

Combine two line segment patterns into a single pattern.

Usage

append.psp(A, B)

Value

Another line segment pattern (object of class "psp").

Arguments

A,B

Line segment patterns (objects of class "psp").

Author

Adrian Baddeley Adrian.Baddeley@curtin.edu.au, Rolf Turner rolfturner@posteo.net and Ege Rubak rubak@math.aau.dk.

Details

This function is used to superimpose two line segment patterns A and B.

The two patterns must have identical windows. If one pattern has marks, then the other must also have marks of the same type. It the marks are data frames then the number of columns of these data frames, and the names of the columns must be identical.

(To combine two point patterns, see superimpose).

If one of the arguments is NULL, it will be ignored and the other argument will be returned.

See Also

psp, as.psp, superimpose,

Examples

Run this code
  X <- psp(runif(20), runif(20), runif(20), runif(20),  window=owin())
  Y <- psp(runif(5), runif(5), runif(5), runif(5),  window=owin())
  append.psp(X,Y)

Run the code above in your browser using DataLab