|
| 1 | +#' compute_statistics |
| 2 | +#' |
| 3 | +#' @description Compute summary statistics |
| 4 | +#' |
| 5 | +#' @param x,y x and y coordinates of the points from the reference point pattern. |
| 6 | +#' @param k Vector of values k; used only if Dk is included in w_statistics below. |
| 7 | +#' @param xr,yr x and y extension of the observation window (start, end). |
| 8 | +#' @param w_statistics vector of named weights for optional spatial statistics |
| 9 | +#' from the \code{spatstat} package to be included in the energy calculation. This may |
| 10 | +#' include Dk, K, Hs, pcf. |
| 11 | +#' @param bw,divisor,kernel_arg,r Several parameters related to summary function. |
| 12 | +#' |
| 13 | +#' @details |
| 14 | +#' Compute optional spatial statistics using the spatstat package. |
| 15 | +#' |
| 16 | +#' @return list |
| 17 | +#' |
| 18 | +#' @aliases compute_statistics |
| 19 | +#' @rdname compute_statistics |
| 20 | +#' |
| 21 | +#' @keywords internal |
| 22 | +compute_statistics <- function(x, y, k, xr, yr, w_statistics, bw, divisor, kernel_arg, r) { |
| 23 | + |
| 24 | + stat <- names(w_statistics) |
| 25 | + names(stat) <- stat |
| 26 | + lapply(stat, function(name) switch(name, |
| 27 | + # Calculation of the Dk(r)-function, if this is to be taken into account for the energy calculation. |
| 28 | + Dk = { |
| 29 | + nnd_ <- as.matrix(spatstat.geom::nndist(x, y, k=k)) |
| 30 | + apply(nnd_, 2, function(z) cumsum(graphics::hist(z[z <= max(r)], breaks = c(-Inf, max(r)), plot = FALSE) $ count) / length(z)) |
| 31 | + }, |
| 32 | + |
| 33 | + # Calculation of the K(r)-function, if this is to be taken into account for the energy calculation. |
| 34 | + K = { |
| 35 | + kest<-spatstat.explore::Kest(spatstat.geom::ppp(x,y,window=spatstat.geom::owin(xr,yr)), rmax=max(r), correction="none") |
| 36 | + kest$un |
| 37 | + }, |
| 38 | + |
| 39 | + # Calculation of the pcf(r)-function (spherical contact distribution), if this is to be taken into account for the energy calculation. |
| 40 | + pcf = { |
| 41 | + pcfest<-spatstat.explore::pcf.ppp(spatstat.geom::ppp(x,y,window=spatstat.geom::owin(xr,yr)), r=c(0,r), kernel=kernel_arg, divisor=divisor, bw=bw, correction="none") |
| 42 | + pcfest$un |
| 43 | + }, |
| 44 | + # Calculation of the Hs(r)-function (pair correlation function), if this is to be taken into account for the energy calculation. |
| 45 | + Hs = { |
| 46 | + hest<-spatstat.explore::Hest(spatstat.geom::ppp(x,y,window=spatstat.geom::owin(xr,yr)), correction="none") |
| 47 | + hest$raw |
| 48 | + }, |
| 49 | + # wrong selection |
| 50 | + stop("unknown statistic") |
| 51 | + ) |
| 52 | + ) |
| 53 | +} |
0 commit comments