Posted on 2014/06/07, 10:28 PM By admin22
ランダムなデータ、規則性のあるデータ、そしてこれらを混ぜたデータで、自己相関、スペクトルのテストをしてみました。
環境 : R version 3.0.0 / Windows 7
初期設定
1 2 3 |
par(mfrow = c(3,1), col.axis='firebrick2', col.lab='white', bg='gray33', fg='white', col.main='yellow', col.sub='yellow') s <- sin((1:1000)*0.1) r <- runif(1000, 0, 1) |
ランダム
1 2 3 |
plot(r) acf(r) spectrum(r) |
サイン波
1 2 3 |
plot(s) acf(s) spectrum(s) |
ランダム+サイン波
1 2 3 |
plot(0.8*r+0.2*s) acf(0.8*r+0.2*s) spectrum(0.8*r+0.2*s) |
データの周期性を調べるときや、その他Plot関連のメモでした。
Categories: 未分類 タグ: R