Adjust the output width of R Markdown HTML output

后端 未结 2 1019
傲寒
傲寒 2020-11-29 02:43

I am producing an HTML output but I am having issues with the output width of R code output.

I\'m able to adjust the figure width with no difficulty but when I try t

2条回答
  •  南笙
    南笙 (楼主)
    2020-11-29 03:03

    Also, you can temporarily change the local R options for a code chunk:

    ```{r my-chunk, R.options = list(width = SOME-BIG-VALUE)}
    
    ```
    

提交回复
热议问题