Description Usage Arguments Examples
Creates a LaTeX appendix of regression summaries and descriptive statistics. A directory containing all the relevant files
1 |
... |
Models generated by |
dir |
Path to Latex file node where the appendix folder will be appended. |
1 2 3 4 5 6 7 8 9 10 11 | data('freeny')
mod <- lm(y ~ lag.quarterly.revenue + price.index + income.level +
market.potential, data = freeny)
mod2 <- lm(y ~ lag.quarterly.revenue + price.index + income.level,
data = freeny)
tex1 <- build(mod, label='f1', silent=TRUE)
tex2 <- build(mod2, label='f2', silent=TRUE)
d <- paste(getwd(), 'rchitEx', sep='/')
append(list(tex1, tex2), d)
##...Latex files outputted to dir... ##
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.