reg.bic: BIC for lm.fit

Description Usage Arguments Examples

View source: R/reg.bic.R

Description

Calculate BIC for the outcome of lm.fit This function is built for reg.linreg() for higher efficiency only. It can't be used for calculating BIC in general operation.

Usage

1
reg.bic(fit,w)

Arguments

fit

:the outcome of lm.fit

w

:wright

Examples

1
2
3
4
5
X <- as.matrix(cbind(1,EuStockMarkets[,1:2])) # create the design matrix
Y <- as.data.frame(EuStockMarkets)$FTSE
fit <- lm.fit(x = X, y = Y)
w <- rep(1,length(Y))
reg.bic(fit,w)

PMmisc documentation built on May 1, 2019, 9:57 p.m.

Related to reg.bic in PMmisc...