https://github.com/cran/forecast
Raw File
Tip revision: 7ebcf1ae391c9273406ed5870fd98439851ccb70 authored by Rob J Hyndman on 20 October 2015, 08:06:46 UTC
version 6.2
Tip revision: 7ebcf1a
logLikets.Rd
\name{logLik.ets}
\alias{logLik.ets}

\title{Log-Likelihood of an ets object}
\usage{
\method{logLik}{ets}(object, ...)
}

\arguments{
\item{object}{an object of class \code{ets}, representing an exponential smoothing state space model.}
\item{...}{some methods for this generic require additional arguments. None are used in this method.}
}

\description{Returns the log-likelihood of the ets model represented by \code{object} evaluated at the estimated parameters.}


\value{the log-likelihood of the model represented by \code{object} evaluated at the estimated parameters.}


\references{Hyndman, R.J., Koehler, A.B., Ord, J.K., and Snyder, R.D. (2008)
\emph{Forecasting with exponential smoothing: the state space approach},
Springer-Verlag. \url{http://www.exponentialsmoothing.net}.
}


\seealso{\code{\link{ets}}}

\author{Rob J Hyndman}
\examples{fit <- ets(USAccDeaths)
logLik(fit)
}
\keyword{ts}
back to top