Kmodel(spatstat)
Kmodel()所属R语言包:spatstat
K function of a model
K函数的模型
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns the theoretical K function or the pair correlation function of a point process model.
返回的理论K函数的点过程模型或对相关功能。
用法----------Usage----------
Kmodel(model, ...)
pcfmodel(model, ...)
## S3 method for class 'kppm'
Kmodel(model, ...)
## S3 method for class 'kppm'
pcfmodel(model, ...)
参数----------Arguments----------
参数:model
A fitted cluster point process model, typically obtained from the model-fitting algorithm kppm. An object of class "kppm".
一个装有聚点过程模型,,通常从模型的拟合算法kppm。对象的类"kppm"。
参数:...
Ignored.
忽略。
Details
详细信息----------Details----------
For certain types of point process models, it is possible to write down a mathematical expression for the K function or the pair correlation function of the model. In particular this is possible for a fitted cluster point process model (object of class "kppm" obtained from kppm).
对于某些类型的点过程模型,它是可以写一个K的功能或对相关函数的模型的数学表达式。尤其是,这是可能的装簇点过程模型(对象类"kppm"从kppm)。
The functions Kmodel and pcfmodel are generic. Currently the only method is for the class "kppm".
的功能Kmodel和pcfmodel是通用的。目前,唯一的方法是类"kppm"。
The return value is a function in the R language, which takes one argument r. Evaluation of this function, on a numeric vector r, yields values of the desired K function or pair correlation function at these distance values.
返回值是一个functionR语言中,这需要一个参数r。评价此功能,在数字矢量r,收益率值所需的K的功能或对相关函数在这些距离值。
值----------Value----------
A function in the R language, which takes one argument r.
Afunction,这需要一个参数rR语言。
(作者)----------Author(s)----------
Adrian Baddeley
<a href="mailto:Adrian.Baddeley@csiro.au">Adrian.Baddeley@csiro.au</a>
<a href="http://www.maths.uwa.edu.au/~adrian/">http://www.maths.uwa.edu.au/~adrian/</a>
and Rolf Turner
<a href="mailto:r.turner@auckland.ac.nz">r.turner@auckland.ac.nz</a>
参见----------See Also----------
kppm, Kest, pcf
kppm,Kest,pcf
实例----------Examples----------
data(redwood)
fit <- kppm(redwood, ~x, "MatClust")
K <- Kmodel(fit)
K(c(0.1, 0.2))
curve(K(x), from=0, to=0.25)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|