Ask Your Question
2

How can "big.mark = ','" be included in the output of texreg?

asked 2023-06-01 02:10:21 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-06-01 02:20:02 +0000

nofretete gravatar image

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.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-01 02:10:21 +0000

Seen: 12 times

Last updated: Jun 01 '23