isoacf(sandwich)
isoacf()所属R语言包:sandwich
Isotonic Autocorrelation Function
等渗自相关函数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Autocorrelation function (forced to be decreasing by isotonic regression).
自相关函数(保序回归被迫减少)。
用法----------Usage----------
isoacf(x, lagmax = NULL, weave1 = FALSE)
参数----------Arguments----------
参数:x
numeric vector.
数字矢量。
参数:lagmax
numeric. The maximal lag of the autocorrelations.
数字。的自相关函数的最大滞后。
参数:weave1
logical. If set to TRUE isoacf uses the acf.R and pava.blocks function from the original weave package, otherwise R's own acf and isoreg functions are used.
逻辑。如果设置TRUEisoacf使用acf.R和pava.blocks功能从原来的weave包,否则R的自己的acf和isoreg, 函数使用。
Details
详细信息----------Details----------
isoacf computes the autocorrelation function (ACF) of x enforcing the ACF to be decreasing by isotonic regression. See also Robertson et al. (1988).
isoacf x执行ACF减少保序回归计算的自相关函数(ACF)。也参看Robertson等人的。 (1988)。
值----------Value----------
isoacf returns a numeric vector containing the ACF.
isoacf返回一个数字向量的ACF。
参考文献----------References----------
Weighted Empirical Adaptive Variance Estimators for Correlated Data Regression. Journal of the Royal Statistical Society B, 61, 459–477.
Order Restricted Statistical Inference. New York. Wiley.
参见----------See Also----------
weave, weightsLumley
weave,weightsLumley
实例----------Examples----------
x <- filter(rnorm(100), 0.9, "recursive")
isoacf(x)
acf(x, plot = FALSE)$acf
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|