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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。