fanchart(vars)
fanchart()所属R语言包:vars
Fanchart plot for objects of class varprd
类varprd对象的Fanchart的图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Time Series plots of VAR forecasts with differently shaded confidence regions (fanchart) for each endogenous variable.
时间序列图的不同阴影的置信区间(fanchart)各内生变量VAR预测。
用法----------Usage----------
fanchart(x, colors = NULL, cis = NULL, names = NULL, main = NULL, ylab =
NULL, xlab = NULL, col.y = NULL, nc, plot.type = c("multiple",
"single"), mar = par("mar"), oma = par("oma"), ... )
参数----------Arguments----------
参数:x
An object of class "varprd"; generated by predict().
一个对象类的varprd所产生的predict()。
参数:colors
Character vector of colors to be used for shading. If unset, a gray color scheme is used.
用于阴影的颜色特征矢量。如果不设置,一个灰色的配色方案。
参数:cis
A numeric vector of confidence intervals. If unset the sequence from 0.1 to 0.9 is used (step size 0.1).
一个数值向量的置信区间。如果未设置用于从0.1到0.9的序列(步骤0.1尺寸)。
参数:names
Character vector, names of variables for fancharts. If unset, all variables are plotted.
字符向量,名称变量的fancharts。如果不设置,所有的变量都绘制。
参数:main
Character vector, title for fanchart plots.
字符向量,标题为fanchart图。
参数:ylab
Character, ylab for fanchart.
字符,ylab fanchart。
参数:xlab
Character, xlab for fanchart.
字符,xlab fanchart。
参数:col.y
Character, color for plotted time series.
字符,颜色,绘制时间序列。
参数:plot.type
Character, if multiple all fancharts appear in one device.
字符,如果有多个所有fancharts出现在一台设备。
参数:nc
Integer, number of columns if plot.type is multiple.
整数,列数,如果plot.type是多方面的。
参数:mar
Vector, setting of margins.
向量,设置的保证金。
参数:oma
Vector, setting of outer margins.
矢量,设置的外边缘。
参数:...
Dot argument, passed to plot.ts.
点的说法,传递到plot.ts.的
(作者)----------Author(s)----------
Bernhard Pfaff
参考文献----------References----------
projections: understanding the fan chart, Bank of England Quarterly Bulletin, February, Bank of England, pages 30-37.
参见----------See Also----------
VAR, predict, plot, par
VAR,predict,plot,par
实例----------Examples----------
## Not run: [#不运行:]
data(Canada)
var.2c <- VAR(Canada, p = 2, type = "const")
var.2c.prd <- predict(var.2c, n.ahead = 8, ci = 0.95)
fanchart(var.2c.prd)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|