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


R Strauss 模拟施特劳斯空间点过程


R语言 Strauss 位于 spatial 包(package)。

说明

模拟施特劳斯空间点过程。

用法

Strauss(n, c=0, r)

参数

n

点数

c

中的参数 cc = 0 对应于在达到 r 的距离处完全抑制。

r

抑制距离

细节

使用空间 birth-and-death 过程执行 4 个 n 步骤,或从其他函数第一次调用时的二项式模式开始执行 40 个 n 步骤。使用 ppinitppregion 设置的区域。

坐标的向量列表

副作用

使用随机数生成器

例子

towns <- ppinit("towns.dat")
par(pty="s")
plot(Kfn(towns, 10), type="b", xlab="distance", ylab="L(t)")
lines(Kaver(10, 25, Strauss(69,0.5,3.5)))

参考

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

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

也可以看看

Psim , SSI

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Simulates Strauss Spatial Point Process。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。