
Last chance! 50% off unlimited learning
Sale ends in
summary
method for class "quad"
.## S3 method for class 'quad':
summary(object, \dots, checkdup=FALSE)
## S3 method for class 'quad':
print.summary(x, \dots, dp=3)
"summary.quad"
returned by
summary.quad
.summary.quad
returns an object of class "summary.quad"
,
while print.summary.quad
returns NULL
.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.
# 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
Run the code above in your browser using DataLab