spprint | R Documentation |
Prints a very brief description of a point pattern dataset.
## S3 method for class 'sp2' print(x, ...) ## S3 method for class 'sp3' print(x, ...)
x |
Point pattern (an object of class |
... |
Ignored. |
A very brief description of the point pattern x
is printed.
This is a method for the generic function print
.
These functions are the analogues for point processes on the sphere of
the function print.ppp
in spatstat, which
is the corresponding function for point processes in R^2. Hence
elements of this help page have been taken from
print.ppp
with the permission of A. J. Baddeley.
This enables the information on this help page to be consistent with
that for print.ppp
. It is hoped that this will
minimise or remove any confusion for users of both spatstat and
spherstat.
Tom Lawrence <email: tjlawrence@bigpond.com>
summary.sp2
, summary.sp3
,
print.sphwin
, summary.sphwin
X <- matrix(c(1,0,0, 0,0,1, 0,1,0), nrow=3, ncol=3, byrow=TRUE) win <- sphwin(type="sphere") X <- sp3(X=X, win=win) print(X) Y <- matrix(c(0,0, pi/2, 0, pi/2, pi, pi, 0), nrow=4, ncol=2, byrow=TRUE) y <- sp2(X=Y, win=win) print(Y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.