소스 검색

Add to the changelog / style change.

Sean J. Taylor 8 년 전
부모
커밋
719d380589
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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)