isBizday(timeDate)
isBizday()所属R语言包:timeDate
Business and Holidays
商业和节假日
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Tests if a date is a business day or not.
日期的测试,如果一个营业日或。
用法----------Usage----------
isBizday(x, holidays = holidayNYSE(), wday = 1:5)
isHoliday(x, holidays = holidayNYSE(), wday = 1:5)
参数----------Arguments----------
参数:x
an object of class timeDate.
对象类timeDate。
参数:holidays
holiday dates from a holiday calendar. An object of class timeDate.
放假日期从假期日历。对象的类timeDate。
参数:wday
Specify which days should be considered as weekdays. By default from Mondays to Fridays.
指定天应视为平日。默认情况下,从星期一至星期五。
值----------Value----------
a logical vector of the same length as x indicating if a date is a business day, or a holiday, respectively.
逻辑向量x的,表示如果日期是营业日,或度假,相同的长度。
实例----------Examples----------
currentYear = getRmetricsOptions("currentYear")
tS = timeSequence(
from = paste(currentYear, "-03-01", sep = ""),
to = paste(currentYear, "-04-30", sep = ""))
tS
## Subset Business Days at NYSE:[#子集营业日在纽约证券交易所:]
holidayNYSE()
isBizday(tS, holidayNYSE())
tS[isBizday(tS, holidayNYSE())]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|