JohnsonJohnson(datasets)
JohnsonJohnson()所属R语言包:datasets
Quarterly Earnings per Johnson & Johnson Share
每季度盈利强生公司分享
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Quarterly earnings (dollars) per Johnson & Johnson share 1960–80.
季度收益(元)%强生公司份额1960至1980年。
用法----------Usage----------
格式----------Format----------
A quarterly time series
一个季度的时间系列
源----------Source----------
Shumway, R. H. and Stoffer, D. S. (2000) Time Series Analysis and its Applications. Second Edition. Springer. Example 1.1.
沙姆韦,相对湿度和斯托弗,副秘书长(2000年)的时间序列分析及其应用。第二版。斯普林格。例1.1。
举例----------Examples----------
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.[#平台,但似乎收敛x86上的Linux和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)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|