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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。