View source: R/Estimate_st_intensity_point.R
| estimate.intensity.point | R Documentation |
Computes kernel-based spatial, temporal, separable, and non-separable intensity
estimates evaluated at the observed spatio-temporal event locations. The function
also returns the separability diagnostic S_i and global deviation measures
quantifying departures from first-order separability.
estimate.intensity.point(X, n.grid, edge)
X |
Numeric matrix/data.frame with three columns |
n.grid |
Integer. Included for API compatibility with grid-based routines; not used. |
edge |
List with components |
Pairwise Gaussian kernel weights are computed in each dimension and diagonal entries are set to zero to remove self-contributions.
A list with components S.fun, deviation measures, and estimated
intensity components at the observed points.
dnorm
X <- cbind(stats::runif(50), stats::runif(50), stats::runif(50))
edge <- list(bw = c(0.1, 0.1, 0.1), space = 1, time = 1)
res <- estimate.intensity.point(X, n.grid = 50, edge = edge)
str(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.