Rev 3038 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{BIC}\docType{genericFunction}\alias{BIC}\alias{BIC,logLik-method}\alias{BIC,ANY-method}\title{Bayesian Information Criterion}\description{This generic function calculates the Bayesian information criterion,also known as Schwarz's Bayesian criterion (SBC), for one or severalfitted model objects for which a log-likelihood value can be obtained,according to the formula \eqn{-2 \mbox{log-likelihood} + n_{par}\log(n_{obs})}{-2*log-likelihood + npar*log(nobs)}, where\eqn{n_{par}}{npar} represents thenumber of parameters and \eqn{n_{obs}}{nobs} the number ofobservations in the fitted model.}\usage{BIC(object, \dots)}\arguments{\item{object}{An object of a suitable class for the BIC to becalculated - usually a \code{\link[base]{logLik}} objectcreated by a call to the \code{\link[base]{logLik}} generic.}\item{\dots}{Some methods for this generic function may takeadditional, optional arguments. At present none do.}}\value{if just one object is provided, returns a numeric value with thecorresponding BIC; if more than one object are provided, returns a\code{data.frame} with rows corresponding to the objects and columnsrepresenting the number of parameters in the model (\code{df}) and theBIC.}\references{Schwarz, G. (1978)Estimating the Dimension of a Model,\emph{Annals of Statistics} \bold{6}, 461--464.}\seealso{\code{\link[base]{logLik}}, \code{\link[stats]{AIC}}}\keyword{models}