ForwardDates-methods(rugarch)
ForwardDates-methods()所属R语言包:rugarch
function: Generate Future Dates
功能:产生未来日期
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given a starting date, this helper function generates a set of future dates (excl.weekends) for use in forecasting and simulation when using external regressors.
由于起始日期,这个辅助函数生成的未来日期(excl.weekends)的一套用于预测和模拟,当使用外部的回归系数。
用法----------Usage----------
ForwardDates(Dates, n.ahead, date.format, periodicity = "days")
参数----------Arguments----------
参数:Dates
A character vector of dates. The last date is used as the starting date for the forward date creation.
字符向量的日期。的最后日期作为起始日期为前锋创造。
参数:n.ahead
The number of dates to generate forward.
产生向前的日期。
参数:date.format
The format of the dates e.g. “%Y-%m-%d"” .
的格式的日期,例如“%Y-%M-%d”“的。
参数:periodicity
Currently only days is supported.
目前只支持天。
值----------Value----------
A POSIXct vector of future dates.
一个未来的日期POSIXct矢量。
注意----------Note----------
This is a helper function particularly useful when used with the weekday dummy variable for simulation and forecasting in light of weekday dummy external regressors in the mean or variance equation. For example, if fitting a GARCH model with a "Monday" dummy variable in the mean equation, then for simulation or forecasting, one needs a set of forward deterministic dummy variables for the Mondays going forward.
这是一个辅助函数特别有用,使用时,在平日的均值或方差方程的的虚拟外部回归系数在周一至周五的虚拟变量,模拟和预测。例如,如果用“星期一”哑变量在均值方程拟合GARCH模型,然后,一个用于模拟或预测需要一组向前确定性虚拟变量为星期一前进。
(作者)----------Author(s)----------
Alexios Ghalanos
实例----------Examples----------
## Not run: [#不运行:]
data(sp500ret)
Dates = rownames(sp500ret)
# generate the 100 forward non-weekend days[产生的100向前非周末两天]
fwd100 = ForwardDates(Dates, n.ahead=100, date.format = "%Y-%m-%d",
periodicity = "days")
# create a dummy vector for those forward days which are Mondays[创建一个虚拟的向量,向前天是星期一]
fwdMonday = WeekDayDummy(as.character(fwd100), date.format = "%Y-%m-%d",
weekday = "Monday")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|