R/coef.lm.beta.R

Defines functions coef.lm.beta

Documented in coef.lm.beta

coef.lm.beta <- function(object, standardized = TRUE, ...) {
  if (standardized) {
    res <- object$standardized.coefficients
  } else {
    res <- object$coefficients
  }
  res
}

Try the lm.beta package in your browser

Any scripts or data that you put into this service are public.

lm.beta documentation built on March 31, 2023, 8:23 p.m.