Displaying 1 result from an estimated 1 matches for "analaz".
Did you mean:
analiz
2009 Feb 20
0
Random labeling hypothesis in spatstat
...<- function(X,...,i) {
Kidot <- Kdot(X,...,i=i)
K <- Kest(X,...)
dif <- eval.fv(Kidot-K)
return(dif)
}
E <- envelope(ppp, Kdif, nsim=100, i="Predated", simulate=expression(rlabel(ppp)))
plot(E, main="clustering of predation events")
I got this code from the 'Analazing spatial patterns in R Workshop notes', and it works fine, but not sure I understand exactly what it means. Specifically I want to make sure that the Kidot is just looking at the distribution of predation events, but I am not sure if it is doing this. What does Kdot(X,...,i=i) mean exactly?...