View source: R/summaryimlist.R
summary.imlist | R Documentation |
im
objectsThis function assumes that im
objects are each realisations of the same (stochastic) object.
It returns pointwise summaries such as observed sample mean and sample variance.
## S3 method for class 'imlist'
summary(object, ..., harmonizeobject = TRUE)
object |
A list of |
... |
Ignored |
harmonizeobject |
If TRUE (default) the pixel dimensions of the images will be harmonized. Otherwise the object will be tested for compatibility. |
A list im
objects containing the pointwise mean, variance and maxima and minima.
Kassel Hingee
# reduce resolution in setcov() for faster (less accurate) computation
oldopt <- spatstat.options()
spatstat.options("npixel" = 2^4)
obspatterns <- replicate(3, rbdd(10, 0.05, window = square(1)), simplify = FALSE)
ims <- solapply(obspatterns,
function(x) racscovariance(x, obswin = square(1), estimators = "pickaH", drop = TRUE))
summ <- summary.imlist(ims, harmonizeobject = FALSE)
spatstat.options(oldopt)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.