UBC-MDS / aRidanalysis

aRidanalysis: DRY out your regression analysis!
https://ubc-mds.github.io/aRidanalysis/
Other
0 stars 2 forks source link

Create the vignette guide for the package #48

Closed ansarusc closed 3 years ago

cmmclaug commented 3 years ago

Here's a new vignette for my linreg function:

data(mtcars) head(mtcars, 6) model <- arid_linreg() model$fit(subset(mtcars, select=mpg:disp), mtcars['hp']) model$predict(matrix(c(20, 5, 180), nrow=1, ncol=3)) model$score()