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


R SSI 模拟连续空间抑制点过程


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

说明

模拟SSI(顺序空间抑制)点过程。

用法

SSI(n, r)

参数

n

点数

r

抑制距离

细节

使用 ppinitppregion 设置的区域。

xy 坐标的向量列表

副作用

使用随机数生成器。

警告

如果r太大并且无法放置n点,则永远不会返回。

例子

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

参考

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

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

也可以看看

Psim , Strauss

相关用法


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