kmt | R Documentation |
t
-mark function
Computes an estimator of the temporal t
-mark function.
kmt(xyt,t.region,t.lambda,dt,kt="epanech",ht,correction="none",approach="simplified")
xyt |
Spatial coordinates and times |
t.region |
Vector containing the minimum and maximum values of the time interval. |
t.lambda |
Vector of values of the temporal intensity function evaluated at the points |
dt |
A vector of times |
kt |
A kernel function for the temporal distances. The default is the |
ht |
A bandwidth of the kernel function |
correction |
A character vector specifying the edge-correction(s) to be applied among |
approach |
A character vector specifying the approach to use for the estimation to be applied among "simplified" or |
By default, this command calculates an estimate of the temporal t
-mark function k_[m.](t)
for a spatio-temporal point pattern.
ekmt |
A vector containing the values of |
dt |
Parameter passed in argument. If |
kernel |
Parameters passed in argument. A vector of names and bandwidth of the spatial kernel. |
kmttheo |
Value under the Poisson case is calculated considering the side lengths of the bounding box of |
Francisco J. Rodriguez Cortes <frrodriguezc@unal.edu.co> https://fjrodriguezcortes.wordpress.com
Baddeley, A., Rubak, E., Turner, R. (2015). Spatial Point Patterns: Methodology and Applications with R. CRC Press, Boca Raton.
Chiu, S. N., Stoyan, D., Kendall, W. S., and Mecke, J. (2013). Stochastic Geometry and its Applications. John Wiley & Sons.
Gabriel, E., Rowlingson, B., Diggle P J. (2013) stpp
: an R package for plotting, simulating and analyzing Spatio-Temporal Point Patterns. Journal of Statistical Software 53, 1-29.
Illian, J B., Penttinen, A., Stoyan, H. and Stoyan, D. (2008). Statistical Analysis and Modelling of Spatial Point Patterns. John Wiley and Sons, London.
Stoyan, D., Rodriguez-Cortes, F. J., Mateu, J. and Wilfried, G. (2016). Mark variograms for spatio-temporal point processes, Submitted .
## Not run:
#################
# A realisation of spatio-temporal homogeneous Poisson point processes
hpp <- rpp(lambda = 100, replace = FALSE)$xyt
# R plot
plot(hpp)
# This function provides an kernel estimator of the temporal t-mark function
out <- kmt(hpp)
# R plot - Temporal t-mark function
par(mfrow=c(1,1))
xl <- c(0,0.25)
plot(out$dt,out$ekmt,type="l",xlab="t = time",ylab=expression(k[m.](t)),
xlim=xl,col=1,cex.lab=1.5,cex.axis=1.5)
lines(out$dt,rep(out$kmttheo,length(out$dt)),col=11)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.