harmonise.msr | R Documentation |
Convert several measures to a common quadrature scheme
## S3 method for class 'msr'
harmonise(...)
... |
Any number of measures (objects of class |
This function makes any number of measures compatible, by converting them all to a common quadrature scheme.
The command harmonise
is generic. This is the
method for objects of class "msr"
.
A list, of length equal to the number of arguments ...
,
whose entries are measures.
.
harmonise
,
msr
fit1 <- ppm(cells ~ x)
fit2 <- ppm(rpoispp(ex=cells) ~ x)
m1 <- residuals(fit1)
m2 <- residuals(fit2)
harmonise(m1, m2)
s1 <- residuals(fit1, type="score")
s2 <- residuals(fit2, type="score")
harmonise(s1, s2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.