isWeekday {timeDate} | R Documentation |
Tests if a date is a weekday or not.
isWeekday(x) isWeekend(x)
x |
an object of class timeDate .
|
the functions return logical vectors indicating if a date is a weekday, or a weekend day.
## Dates in April, currentYear: currentYear = getRmetricsOptions("currentYear") tS = timeSequence( from = paste(currentYear, "-03-01", sep = ""), to = paste(currentYear, "-04-30", sep = "")) tS ## Subset of Weekends: isWeekend(tS) tS[isWeekend(tS)]