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


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