isBizday | R Documentation |
Tests if a date is a business day or not.
isBizday(x, holidays = holidayNYSE(), wday = 1:5)
isHoliday(x, holidays = holidayNYSE(), wday = 1:5)
x |
an object of class |
holidays |
holiday dates from a holiday calendar. An object of class
|
wday |
Specify which days should be considered as weekdays. By default from Mondays to Fridays. |
Returns a logical vector of the same length as x
indicating if
a date is a business day, or a holiday, respectively.
a logical vector of the same length as x
## dates in April, current year
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())]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.