summary.quad {spatstat} | R Documentation |
summary
method for class "quad"
.
## S3 method for class 'quad' summary(object, ..., checkdup=FALSE) ## S3 method for class 'summary.quad' print(x, ..., dp=3)
object |
A quadrature scheme. |
... |
Ignored. |
checkdup |
Logical value indicating whether to test for duplicated points. |
dp |
Number of significant digits to print. |
x |
Object of class |
This is a method for the generic summary
for the class "quad"
. An object of class "quad"
describes a quadrature scheme, used to fit a point process model.
See quad.object
) for details of this class.
summary.quad
extracts information about the
quadrature scheme,
and print.summary.quad
prints this information in a
comprehensible format.
In normal usage, print.summary.quad
is invoked implicitly
when the user calls summary.quad
without assigning its value
to anything. See the examples.
summary.quad
returns an object of class "summary.quad"
,
while print.summary.quad
returns NULL
.
Adrian Baddeley Adrian.Baddeley@csiro.au http://www.maths.uwa.edu.au/~adrian/ and Rolf Turner r.turner@auckland.ac.nz
# make a quadrature scheme Q <- quadscheme(rpoispp(42)) # summarize it summary(Q) # save the summary s <- summary(Q) # print it print(s) s # extract total quadrature weight s$w$all$sum