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


R JohnsonJohnson 強生每股季度收益


R語言 JohnsonJohnson 位於 datasets 包(package)。

說明

1960-80 年強生公司每股季度收益(美元)。

用法

JohnsonJohnson

格式

每季度時間序列

例子


require(stats); require(graphics)
JJ <- log10(JohnsonJohnson)
plot(JJ)
## This example gives a possible-non-convergence warning on some
## platforms, but does seem to converge on x86 Linux and Windows.
(fit <- StructTS(JJ, type = "BSM"))
tsdiag(fit)
sm <- tsSmooth(fit)
plot(cbind(JJ, sm[, 1], sm[, 3]-0.5), plot.type = "single",
     col = c("black", "green", "blue"))
abline(h = -0.5, col = "grey60")

monthplot(fit)

來源

Shumway, R. H. 和 Stoffer, D. S. (2000) 時間序列分析及其應用。第二版。施普林格。例 1.1。

相關用法


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