當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R Kaver 模擬的平均 K 函數


R語言 Kaver 位於 spatial 包(package)。

說明

形成一係列(通常是模擬的)K-functions 的平均值。

用法

Kaver(fs, nsim, ...)

參數

fs

K-fn 的全尺寸

nsim

模擬次數

...

模擬單點過程對象的參數

列出 L-scale 上的平均值 K-fn 的分量 xy

例子

towns <- ppinit("towns.dat")
par(pty="s")
plot(Kfn(towns, 40), type="b")
plot(Kfn(towns, 10), type="b", xlab="distance", ylab="L(t)")
for(i in 1:10) lines(Kfn(Psim(69), 10))
lims <- Kenvl(10,100,Psim(69))
lines(lims$x,lims$lower, lty=2, col="green")
lines(lims$x,lims$upper, lty=2, col="green")
lines(Kaver(10,25,Strauss(69,0.5,3.5)),  col="red")

參考

Ripley, B. D. (1981) Spatial Statistics. Wiley.

Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. Fourth edition. Springer.

也可以看看

Kfn , Kenvl

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Average K-functions from Simulations。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。