Browse Source

Add to the changelog / style change.

Sean J. Taylor 8 years ago
parent
commit
719d380589
2 changed files with 2 additions and 1 deletions
  1. 1 1
      R/R/prophet.R
  2. 1 0
      README.md

+ 1 - 1
R/R/prophet.R

@@ -417,7 +417,7 @@ set_auto_seasonalities <- function(m) {
   if (m$yearly.seasonality == 'auto') {
     if (last - first < 730) {
       warning('Disabling yearly seasonality. ',
-           'Run prophet with `yearly.seasonality=TRUE` to override this.')
+              'Run prophet with `yearly.seasonality=TRUE` to override this.')
       m$yearly.seasonality <- FALSE
     } else {
       m$yearly.seasonality <- TRUE

+ 1 - 0
README.md

@@ -52,6 +52,7 @@ On Windows, PyStan requires a compiler so you'll need to [follow the instruction
 ### Version 0.1.1 (2017.04.17)
 
 - Bugfixes
+- New options for detecting yearly and weekly seasonality (now the default)
 
 ### Version 0.1 (2017.02.23)