This is a repository for storing all code, documentation, and digital artifacts for BIS557.
So far the only thing we've done is create and document a function that
calls lm
. You can use it like this:
library(bis557)
fit <- linear_model(Sepal.Length ~., iris)
summary(fit)