periodogram(TSA)
periodogram()所属R语言包:TSA
Computing the periodogram
计算周期图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
用法----------Usage----------
periodogram(y,log='no',plot=TRUE,ylab="Periodogram", xlab="Frequency",lwd=2,...)
参数----------Arguments----------
参数:y
A univariate time series
一个单变量时间序列
参数:log
if set to "yes", the periodogram is plotted on the log-scale; default="no"
如果设置为“yes”,,周期图绘制在对数刻度,默认=“没有”,
参数:plot
The periodogram is plotted if it is set to be TRUE which is the default
如果它被设置为TRUE,这是默认的,周期图的绘制
参数:ylab
label on the y-axis
标签上的y轴
参数:xlab
label on the x-axis
标签上的x轴
参数:lwd
thickness of the periodogram lines
周期图线的厚度
参数:...
other arguments to be passed to the plot function </table>
其他参数被传递到绘图功能</ TABLE>
值----------Value----------
A list that contains the following elements: <table summary="R valueblock"> <tr valign="top"><td>freq</td> <td> Vector of frequencies at which the spectral density is estimated. (Possibly approximate Fourier frequencies.</td></tr> <tr valign="top"><td>spec</td> <td> Vector of estimates of the periodogram at frequencies corresponding to freq.</td></tr> </table>
一个列表,包含以下内容:<table summary="R valueblock"> <tr valign="top"> <TD>freq </ TD> <TD>向量的频率在谱密度估计。 (可能是近似傅立叶频率。</ TD> </ TR> <tr valign="top"> <TD>spec </ TD> <TD>向量的周期图估计在频率对应的频率。 / TD> </ TR> </ TABLE>
参考文献----------References----------
Brockwell, P. J. and Davis, R. A. (1991) Time Series: Theory and Methods. Second edition. Springer.
实例----------Examples----------
data(star)
plot(star,xlab='Day',ylab='Brightness')
periodogram(star,ylab='Variable Star Periodogram'); abline(h=0)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|