# models
fit1 <- lm(mpg ~ wt, data = mtcars)
fit2 <- lm(mpg ~ wt+hp, data = mtcars)
fit3 <- lm(mpg ~ wt+hp+cyl, data = mtcars)
# export to html
texreg::htmlreg(list(fit1,fit2,fit3),file='models.html')
# export to doc
texreg::htmlreg(list(fit1,fit2,fit3),file='models.doc')
Th...