Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To include "big.mark = ','" in the output of texreg, you can use the "custom.model.names" argument and set "big.mark" as a custom argument. Here is an example code:

```{r} library(texreg) model1 <- lm(mpg ~ wt + cyl, data = mtcars) model2 <- lm(mpg ~ wt + cyl + hp, data = mtcars)

texreg(list(model1, model2), custom.model.names = c("Model 1 - big.mark=','", "Model 2 - big.mark=','")) ```

This will produce the output with "big.mark = ','" included in the model names.