summary.quad
From spatstat v1.31-3
by Adrian Baddeley
Summarizing a Quadrature Scheme
summary
method for class "quad"
.
Usage
## S3 method for class 'quad':
summary(object, \dots, checkdup=FALSE)
## S3 method for class 'summary.quad':
print(x, \dots, dp=3)
Arguments
- 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
"summary.quad"
returned bysummary.quad
.
Details
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.
Value
summary.quad
returns an object of class"summary.quad"
, whileprint.summary.quad
returnsNULL
.
Examples
# 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
Community examples
Looks like there are no examples yet.