我正在使用以下 Matlab 代码来估计 Ripley 的 K 函数。
a = 0;
b = 50;
C_x = a + (b-a).*rand(100,1);
C_y = a + (b-a).*rand(100,1);
locs = zeros(length(C_x),2);
locs(:,1) = C_x;
locs(:,2) = C_y;
dist = a:1:b;
K_t = RipleysK(locs, dist, [a, b, a, b]);
plot(dist,K_t);
title('$\hat{K}$ function','Interpreter','latex','FontSize',14);
xlabel('$r$','Interpreter','latex','FontSize',14);
ylabel('$\hat{K}(r)$','Interpreter','latex','FontSize',14);
csvwrite('test.csv',locs);
“RipleysK”功能可在以下网址找到:http: //www.colorado.edu/geography/class_homepages/geog_4023_s07/labs/lab10/RipleysK.m
相比之下,我使用的是以下 R 脚本。
mydata <- read.csv("test.csv",header=F)
mydata
w <- owin(xrange = c(0,50),yrange = c(0,50))
pp <- as.ppp(mydata,w)
K <- Kest(pp,correction = "none")
plot(K)
Matlab 为指定的 r 值(即 dist)估计 K,而 R 脚本不估计(估计直到 r = 12.5)。
有人可以评论吗?哪一个是正确的?我们可以在 R 脚本中指定 r 值吗?
谢谢