Skip to content

Commit

Permalink
Made allow.multiplicative.trend=FALSE the default in ets()
Browse files Browse the repository at this point in the history
  • Loading branch information
robjhyndman committed May 9, 2015
1 parent 31174a3 commit 9ec19be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 6.0 (?? 2015)
Version 6.0 (9 May 2015)
* Modified dm.test to give error when variance is zero
* Corrected help file for splinef().
* Fixed typo in accuracy help file regarding RMSE
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: forecast
Version: 6.0
Date: 2015-??
Date: 2015-05-09
Title: Forecasting Functions for Time Series and Linear Models
Description: Methods and tools for displaying and analysing
univariate time series forecasts including exponential smoothing
Expand Down
2 changes: 1 addition & 1 deletion R/ets.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ets <- function(y, model="ZZZ", damped=NULL,
alpha=NULL, beta=NULL, gamma=NULL, phi=NULL, additive.only=FALSE, lambda=NULL,
lower=c(rep(0.0001,3), 0.8), upper=c(rep(0.9999,3),0.98),
opt.crit=c("lik","amse","mse","sigma","mae"), nmse=3, bounds=c("both","usual","admissible"),
ic=c("aicc","aic","bic"),restrict=TRUE, allow.multiplicative.trend=TRUE,
ic=c("aicc","aic","bic"),restrict=TRUE, allow.multiplicative.trend=FALSE,
use.initial.values=FALSE, ...)
{
#dataname <- substitute(y)
Expand Down
2 changes: 1 addition & 1 deletion man/ets.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ets(y, model="ZZZ", damped=NULL, alpha=NULL, beta=NULL, gamma=NULL,
lower=c(rep(0.0001,3), 0.8), upper=c(rep(0.9999,3),0.98),
opt.crit=c("lik","amse","mse","sigma","mae"), nmse=3,
bounds=c("both","usual","admissible"), ic=c("aicc","aic","bic"),
restrict=TRUE, allow.multiplicative.trend=TRUE, use.initial.values=FALSE, ...)
restrict=TRUE, allow.multiplicative.trend=FALSE, use.initial.values=FALSE, ...)
}

\arguments{
Expand Down

0 comments on commit 9ec19be

Please sign in to comment.