spec.ar(stats)
spec.ar()所属R语言包:stats
Estimate Spectral Density of a Time Series from AR Fit
从AR拟合时间序列的谱密度估计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Fits an AR model to x (or uses the existing fit) and computes (and by default plots) the spectral density of the fitted model.
适合x(或使用现有的拟合)计算AR模型(默认情况下,图)的谱密度拟合模型的。
用法----------Usage----------
spec.ar(x, n.freq, order = NULL, plot = TRUE, na.action = na.fail,
method = "yule-walker", ...)
参数----------Arguments----------
参数:x
A univariate (not yetr multivariate) time series or the result of a fit by ar.
一元(尚未或多元)的时间序列或一个ar适合的结果。
参数:n.freq
The number of points at which to plot.
绘制的点的数量。
参数:order
The order of the AR model to be fitted. If omitted, the order is chosen by AIC.
AR模型的顺序进行安装。如果省略,顺序是由AIC选择。
参数:plot
Plot the periodogram?
画出周期图?
参数:na.action
NA action function.
NA动作功能。
参数:method
method for ar fit.
methodar合适。
参数:...
Graphical arguments passed to plot.spec.
图形参数传递到plot.spec。
值----------Value----------
An object of class "spec". The result is returned invisibly if plot is true.
对象类"spec"。返回结果如果plot是真正的无形。
警告----------Warning----------
Some authors, for example Thomson (1990), warn strongly that AR spectra can be misleading.
一些学者,例如汤姆森(1990年),警告,强烈的AR谱可能会产生误导。
注意----------Note----------
The multivariate case is not yet implemented.
多元的情况下尚未实现。
参考文献----------References----------
Phil. Trans. Roy. Soc. A 330, 601–616.
Statistics with S. Fourth edition. Springer. (Especially page 402.)
参见----------See Also----------
ar, spectrum.
ar,spectrum。
举例----------Examples----------
require(graphics)
spec.ar(lh)
spec.ar(ldeaths)
spec.ar(ldeaths, method="burg")
spec.ar(log(lynx))
spec.ar(log(lynx), method="burg", add=TRUE, col="purple")
spec.ar(log(lynx), method="mle", add=TRUE, col="forest green")
spec.ar(log(lynx), method="ols", add=TRUE, col="blue")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|