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


R Kenvl 計算 K-fns 模擬的包絡和平均值


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

說明

計算 K-fns 的包絡線(上限和下限)和模擬平均值

用法

Kenvl(fs, nsim, ...)

參數

fs

K-fn 的全尺寸

nsim

模擬次數

...

產生一個模擬的參數

包含組件的列表

x

distances

lower

分鍾K-fns

upper

最大K-fns

aver

K-fns的平均值

例子

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 , Kaver

相關用法


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