Skip to content

Commit

Permalink
Made sd the default weight in forecast.gts, and added the HLW referen…
Browse files Browse the repository at this point in the history
…ce in a couple of other man files
  • Loading branch information
robjhyndman committed Jun 10, 2014
1 parent 5c7cdb9 commit e7ce48b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ v4.3 (10 June 2014)
* Improved arg "characters" in hts() to automate the node structure.
* Added a new arg "characters" in gts(), which will automate the grouping matrix.
* Added a new reference to combinef() man.
* Made 'sd' the default weight in forecast.gts().

v4.2 (25 Mar 2014)
* Fixed Next.Generic error in accuracy.gts.
Expand Down
2 changes: 1 addition & 1 deletion R/forecast.gts.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ forecast.gts <- function(object, h = ifelse(frequency(object) > 1L,
fmethod = c("ets", "arima", "rw"),
keep.fitted = FALSE, keep.resid = FALSE,
positive = FALSE, lambda = NULL, level,
weights = c("none", "sd", "nseries"),
weights = c("sd", "none", "nseries"),
parallel = FALSE, num.cores = 2,
xreg = NULL, newxreg = NULL, ...) {
# Forecast hts or gts objects
Expand Down
1 change: 0 additions & 1 deletion man/combinef.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ Optimal combination forecasts for hierarchical time series.
\emph{Computational Statistics and Data Analysis}, \bold{55}(9), 2579--2589.
\url{http://robjhyndman.com/papers/hierarchical/}


Hyndman, R. J., Lee, A., & Wang, E. (2014).
Fast computation of reconciled forecasts for hierarchical and grouped time series.
\emph{Working paper 17/14, Department of Econometrics & Business Statistics, Monash University.}
Expand Down
7 changes: 6 additions & 1 deletion man/forecast.gts.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Methods for forecasting hierarchical or grouped time series.
fmethod = c("ets", "arima", "rw"),
keep.fitted = FALSE, keep.resid = FALSE,
positive = FALSE, lambda = NULL, level,
weights = c("none", "sd", "nseries"),
weights = c("sd", "none", "nseries"),
parallel = FALSE, num.cores = 2,
xreg = NULL, newxreg = NULL, ...)
}
Expand Down Expand Up @@ -55,6 +55,11 @@ Optimal combination forecasts for hierarchical time series.
\emph{Computational Statistics and Data Analysis}, \bold{55}(9), 2579--2589.
\url{http://robjhyndman.com/papers/hierarchical/}

Hyndman, R. J., Lee, A., & Wang, E. (2014).
Fast computation of reconciled forecasts for hierarchical and grouped time series.
\emph{Working paper 17/14, Department of Econometrics & Business Statistics, Monash University.}
\url{http://robjhyndman.com/working-papers/hgts/}

Gross, C. and Sohl, J. (1990) Dissagregation methods to expedite product line forecasting,
\emph{Journal of Forecasting}, \bold{9}, 233-254.
}
Expand Down
6 changes: 6 additions & 0 deletions man/hts-package.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ R. J. Hyndman, R. A. Ahmed, G. Athanasopoulos and H.L. Shang (2011)
Optimal combination forecasts for hierarchical time series.
\emph{Computational Statistics and Data Analysis}, \bold{55}(9), 2579--2589.
\url{http://robjhyndman.com/papers/hierarchical/}


Hyndman, R. J., Lee, A., & Wang, E. (2014).
Fast computation of reconciled forecasts for hierarchical and grouped time series.
\emph{Working paper 17/14, Department of Econometrics & Business Statistics, Monash University.}
\url{http://robjhyndman.com/working-papers/hgts/}
}
\keyword{package}

Expand Down

0 comments on commit e7ce48b

Please sign in to comment.