mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-07-30 20:18:11 +00:00
Make holidays data internal and exported at the same time (#2185)
This commit is contained in:
parent
2a042cbca7
commit
c9cf658674
5 changed files with 3 additions and 1 deletions
|
|
@ -9,6 +9,7 @@ export(add_seasonality)
|
|||
export(cross_validation)
|
||||
export(dyplot.prophet)
|
||||
export(fit.prophet)
|
||||
export(generated_holidays)
|
||||
export(make_future_dataframe)
|
||||
export(performance_metrics)
|
||||
export(plot_cross_validation_metric)
|
||||
|
|
|
|||
|
|
@ -10,4 +10,5 @@
|
|||
#'
|
||||
#' @format A data frame with four variables: ds, holiday, country, year
|
||||
#' @source \url{https://github.com/facebook/prophet/blob/main/python/scripts/generate_holidays_file.py}
|
||||
#' @export
|
||||
"generated_holidays"
|
||||
|
|
|
|||
BIN
R/R/sysdata.rda
Normal file
BIN
R/R/sysdata.rda
Normal file
Binary file not shown.
|
|
@ -7,4 +7,4 @@
|
|||
|
||||
|
||||
generated_holidays <- read.csv("data-raw/generated_holidays.csv")
|
||||
usethis::use_data(generated_holidays, overwrite = TRUE)
|
||||
usethis::use_data(generated_holidays, overwrite = TRUE, internal = TRUE)
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Reference in a new issue