| stK | R Documentation | 
The function stKtest wraps functions in package splancs to
perform the K-function based Monte Carlo permutation test for space-time
clustering (Diggle et al, 1995) for "epidataCS".
The implementation is due to Meyer et al. (2016).
stKtest(object, eps.s = NULL, eps.t = NULL, B = 199,
        cores = 1, seed = NULL, poly = object$W)
## S3 method for class 'stKtest'
plot(x, which = c("D", "R", "MC"),
     args.D = list(), args.D0 = args.D, args.R = list(), args.MC = list(),
     mfrow = sort(n2mfrow(length(which))), ...)
| object | an object of class  | 
| eps.s,eps.t | numeric vectors defining the spatial and temporal
grids of critical distances over which to evaluate the test.
The default ( | 
| B | the number of permutations. | 
| cores | the number of parallel processes over which to distribute the requested number of permutations. | 
| seed | argument for  | 
| poly | the polygonal observation region of the events (as an object handled
by  | 
| x | an  | 
| which | a character vector indicating which diagnostic plots to produce.
The full set is  | 
| args.D,args.D0,args.R,args.MC | argument lists for the plot functions  | 
| mfrow | 
 | 
| ... | ignored (argument of the generic). | 
an object of class "stKtest" (inheriting from "htest"),
which is a list with the following components:
| method | a character string indicating the type of test performed. | 
| data.name | a character string naming the supplied  | 
| statistic | the sum  | 
| parameter | the number  | 
| p.value | the p-value for the test. | 
| pts | the coordinate matrix of the event locations (for
 | 
| stK | the estimated K-function as returned by
 | 
| seD | the standard error of the estimated  | 
| mctest | the observed and permutation values of the test
statistic as returned by  | 
The plot-method invisibly returns NULL.
Sebastian Meyer
Diggle, P. J.; Chetwynd, A. G.; Häggkvist, R. and Morris, S. E. (1995): Second-order analysis of space-time clustering Statistical Methods in Medical Research, 4, 124-136.
Meyer, S., Warnke, I., Rössler, W. and Held, L. (2016): Model-based testing for space-time interaction using point processes: An application to psychiatric hospital admissions in an urban area. Spatial and Spatio-temporal Epidemiology, 17, 15-25. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1016/j.sste.2016.03.002")}. Eprint: https://arxiv.org/abs/1512.09052.
the simple knox test and function epitest
for testing "twinstim" models.
if (requireNamespace("splancs")) {
    data("imdepi")
    imdepiB <- subset(imdepi, type == "B")
    mainpoly <- coordinates(imdepiB$W@polygons[[1]]@Polygons[[5]])
    SGRID <- c(10, 25, 50, 100, 150)
    TGRID <- c(1, 7, 14, 21)
    B <- 19  # limited here for speed
     
    imdBstKtest <- stKtest(imdepiB, eps.s = SGRID, eps.t = TGRID, B = B,
                           poly = list(mainpoly))
    print(imdBstKtest)
    plot(imdBstKtest)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.