当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。