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


R ppinit 從文件中讀取點過程對象


R語言 ppinit 位於 spatial 包(package)。

說明

讀取標準格式的文件並創建點過程對象。

用法

ppinit(file)

參數

file

給出文件名的字符串

細節

該文件應包含

點數
標頭(忽略)
xl xu yl yu scale
x y(重複n次)

具有組件 xyxlxuylyu 的類 "pp" 對象

副作用

調用ppregion設置域。

例子

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

參考

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

也可以看看

ppregion

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Read a Point Process Object from a File。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。