0

I would like to keep all the columns of the summary output in same line, do you have a solution? as shown in the picture, the last column goes to a new line, how to avoid it?

Thanks a lot in advance!

silva
  • 3
  • 1

1 Answers1

0

Without a code example, I can't help edit the code. In your Rmarkdown initial set up chunk, put the code below

```
{r setup}
knitr::opts_chunk$set(echo = TRUE)
options(width = 1000)
```

the width = 1000 will need to be adjusted to meet your needs.

here is a link that might help you get more information

Daniel_j_iii
  • 3,041
  • 2
  • 11
  • 27