This question already has an answer here:
这个问题已经有了答案:
- Plot size and resolution with R markdown, knitr, pandoc, beamer 2 answers
- 图的大小和分辨率与R markdown, knitr, pandoc, beamer 2的答案。
I'm starting working with R Markdown and I'm not understanding how to generate bigger plots. With today screens the plots can be much bigger.
我开始和R Markdown合作,我不知道如何产生更大的情节。在今天的屏幕上,情节可能会更大。
How do I control the plots width/heigh in a Markdown report?
我如何在Markdown报告中控制图的宽度/高度?
Thanks for the help.
谢谢你的帮助。
1 个解决方案
#1
13
See this SO answer for how to specify these details in chunks.
请查看此选项,以了解如何将这些细节指定为块。
To set global chunk options, use opts_chunk$set(out.width='750px', dpi=200)
inside your first chunk. See this page on chunk options for more.
要设置全局块选项,请使用opts_chunk$set(输出)。在第一部分中,宽度='750px', dpi=200)。更多信息请参见此页面。
#1
13
See this SO answer for how to specify these details in chunks.
请查看此选项,以了解如何将这些细节指定为块。
To set global chunk options, use opts_chunk$set(out.width='750px', dpi=200)
inside your first chunk. See this page on chunk options for more.
要设置全局块选项,请使用opts_chunk$set(输出)。在第一部分中,宽度='750px', dpi=200)。更多信息请参见此页面。