當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R cpgram 繪製累積周期圖


R語言 cpgram 位於 stats 包(package)。

說明

繪製累積周期圖。

用法

cpgram(ts, taper = 0.1,
       main = paste("Series: ", deparse1(substitute(ts))),
       ci.col = "blue")

參數

ts

單變量時間序列

taper

形成周期圖時逐漸減小的比例

main

主題

ci.col

置信帶的顏色。

None。

副作用

在方形圖中繪製累積周期圖。

注意

來自包 MASS

例子

require(graphics)

par(pty = "s", mfrow = c(1,2))
cpgram(lh)
lh.ar <- ar(lh, order.max = 9)
cpgram(lh.ar$resid, main = "AR(3) fit to lh")

cpgram(ldeaths)

作者

B.D. Ripley

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Plot Cumulative Periodogram。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。