R/yhat_lm.R

yhat_lm <-
function(dfTrain, dfTest) {
  ans <- lm(y~., data=dfTrain)
  predict(ans, newdata=dfTest)
}

Try the gencve package in your browser

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

gencve documentation built on May 2, 2019, 6:08 a.m.