extended.lm: A custom wrapper for base function lm()

View source: R/regression.R

extended.lmR Documentation

A custom wrapper for base function lm()

Description

This function takes a matrix of candidate predictors X and a vector of response variables Y.

Usage

extended.lm(X, Y)

Arguments

X

an n by p matrix of candidate predictors.

Y

an n by 1 vector of responses

Examples

require(glmnet)
data("QuickStartExample")
x <- QuickStartExample$x
y <- QuickStartExample$y
extended.lm(x,y)

snelson89/extendedglmnetGroup7 documentation built on May 12, 2022, 7:38 p.m.