https://github.com/cran/forecast
Raw File
Tip revision: 63bde77f366ddfb8d7cb53b5093bd955474fd3c1 authored by Rob J Hyndman on 15 October 2010, 00:00:00 UTC
version 2.09
Tip revision: 63bde77
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://robjhyndman.com/expsmooth}.
}


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

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