From 4841d868c54e458ab0119638e0a08eb1cf984cbf Mon Sep 17 00:00:00 2001 From: "Sean J. Taylor" Date: Mon, 17 Apr 2017 16:56:27 -0700 Subject: [PATCH] Missed this --- R/R/prophet.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/R/prophet.R b/R/R/prophet.R index ab7c9ff..0f22f01 100644 --- a/R/R/prophet.R +++ b/R/R/prophet.R @@ -416,7 +416,7 @@ set_auto_seasonalities <- function(m) { last <- max(m$history$ds) if (m$yearly.seasonality == 'auto') { if (last - first < 730) { - warn('Disabling yearly seasonality. ', + warning('Disabling yearly seasonality. ', 'Run prophet with `yearly.seasonality=TRUE` to override this.') m$yearly.seasonality <- FALSE } else {