rstandard.Arima(TSA)
rstandard.Arima()所属R语言包:TSA
Compute the Standardized Residuals from a Fitted ARIMA Model
从拟合ARIMA模型计算标准化残差
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the internally standardized residuals from a fitted ARIMA model.
从拟合ARIMA模型计算的国内标准化残差。
用法----------Usage----------
## S3 method for class 'Arima':
rstandard(model,...)
参数----------Arguments----------
参数:model
model fitted by the arima function
由华宇功能模型拟合
参数:...
not used; kept here for consistency with the generic method
不使用,存放在这里的一致性与通用方法
Details
详细信息----------Details----------
residuals/(error std. dev.)
/残差(误差标准。开发。)
值----------Value----------
time series of standarized residuals
标化残差的时间序列
实例----------Examples----------
data(oil.price)
m1.oil=arima(log(oil.price),order=c(0,1,1))
plot(rstandard(m1.oil),ylab='Standardized residuals',type='l')
abline(h=0)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|