Variogram.corSpatial(nlme)
Variogram.corSpatial()所属R语言包:nlme
Calculate Semi-variogram for a corSpatial Object
计算半变差为corSpatial对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This method function calculates the semi-variogram values corresponding to the model defined in FUN, using the estimated coefficients corresponding to object, at the distances defined by distance.
这种方法函数计算相应的到FUN定义的模型的半变异函数值,使用对应object估计系数,在distance定义的距离。
用法----------Usage----------
## S3 method for class 'corSpatial'
Variogram(object, distance, sig2, length.out, FUN, ...)
参数----------Arguments----------
参数:object
an object inheriting from class corSpatial, representing spatial correlation structure.
一个对象类corSpatial占空间相关结构,继承。
参数:distance
an optional numeric vector with the distances at which the semi-variogram is to be calculated. Defaults to NULL, in which case a sequence of length length.out between the minimum and maximum values of getCovariate(object) is used.
一个可选的数字来计算的距离,在这半变差是矢量。默认NULL,在这种情况下,序列的长度length.outgetCovariate(object)的最低和最高值之间的使用。
参数:sig2
an optional numeric value representing the process variance. Defaults to 1.
一个可选的数字值,表示制程变异。 1默认。
参数:length.out
an optional integer specifying the length of the sequence of distances to be used for calculating the semi-variogram, when distance = NULL. Defaults to 50.
一个可选的整数,指定的距离序列的长度,可用于计算的半变差,当distance = NULL。 50默认。
参数:FUN
a function of two arguments, the distance and the range corresponding to object, specifying the semi-variogram model.
两个参数,距离和范围相应的的object,指定半变异函数模型的功能。
参数:...
some methods for this generic require additional arguments. None are used in this method.
这个通用的一些方法需要额外的参数。没有使用这种方法。
值----------Value----------
a data frame with columns variog and dist representing, respectively, the semi-variogram values and the corresponding distances. The returned value inherits from class Variogram.
与列variog和dist代表,分别为,半变异函数值和相应的距离数据框。返回值继承自类Variogram。
作者(S)----------Author(s)----------
Jose Pinheiro and Douglas Bates <a href="mailto:bates@stat.wisc.edu">bates@stat.wisc.edu</a>
参考文献----------References----------
参见----------See Also----------
corSpatial, Variogram, Variogram.default, Variogram.corExp, Variogram.corGaus, Variogram.corLin, Variogram.corRatio, Variogram.corSpher, plot.Variogram
corSpatial,Variogram,Variogram.default,Variogram.corExp,Variogram.corGaus,Variogram.corLin,Variogram.corRatio,Variogram.corSpher,plot.Variogram
举例----------Examples----------
cs1 <- corExp(3, form = ~ Time | Rat)
cs1 <- Initialize(cs1, BodyWeight)
Variogram(cs1, FUN = function(x, y) (1 - exp(-x/y)))[1:10,]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|