logLik.mlm: Log-likelihood of multivariate linear regression model

Description Usage Arguments Value Author(s) Examples

Description

Log-likelihood of multivariate linear regression model

Usage

1
2
## S3 method for class 'mlm'
logLik(object, ...)

Arguments

object

multivariate linear regression model fit with lm. of class mlm

...

not used.

Value

log-lik at (unrestricted) maximum with df as attribute.

Author(s)

Andi Boeck

Examples

1
2
3
y <- cbind(rnorm(10), rnorm(10)); x <- 1:10;
mod <- lm(y~x)
logLik(mod)

Atools documentation built on May 2, 2019, 6:30 p.m.

Related to logLik.mlm in Atools...