R/coef.R

Defines functions coef.linreg

Documented in coef.linreg

#' Coef linreg
#' 
#' Prints the coefficients from the linear regression. 
#' 
#' @param object An object of class "linreg".
#' @param ... other arguments.
#' 
#' @return The coefficients from linreg. 
#' 
#' @export

coef.linreg<-function(object,...){
  return(object$Coefficients)
}
harjew/lab4G3 documentation built on Nov. 4, 2019, 1:27 p.m.