当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。