Description Usage Arguments Value Author(s) See Also Examples
The maximum width of a holiday's influence window
1 2 3 4 | ## Default S3 method:
MaxWindowWidth(holiday, ...)
## S3 method for class 'DateRangeHoliday'
MaxWindowWidth(holiday, ...)
|
holiday |
An object of class |
... |
Other arguments (not used). |
Returns the number of days in a holiday's influence window.
Steven L. Scott steve.the.bayesian@gmail.com
Holiday
.
AddRegressionHoliday
.
AddRandomWalkHoliday
.
AddHierarchicalRegressionHoliday
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | easter <- NamedHoliday("Easter", days.before = 2, days.after = 1)
if (MaxWindowWidth(easter) == 4) {
print("That's the right answer!\n")
}
## This holiday lasts two days longer in 2005 than in 2004.
may18 <- DateRangeHoliday("May18",
start = as.Date(c("2004-05-17",
"2005-05-16")),
end = as.Date(c("2004-05-19",
"2005-05-20")))
if (MaxWindowWidth(may18) == 5) {
print("Right again!\n")
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.