Add to the changelog / style change.

This commit is contained in:
Sean J. Taylor 2017-04-17 17:37:33 -07:00
parent 40f6ad64d3
commit 719d380589
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -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)