如何在 R Notebook 中更改图像高度

How to change image height in RNotebook

我想增加 RNotebook 生成的图像的高度。当我使用 fig.height 块选项时,它只是减小了字体大小和标记大小,但图片保持不变。例如:

这是 fig.height=3 的结果:

我实际上如何更改输出的高度?

根据R Markdown: The Definitive Guide,默认情况下,

Plots emitted from a chunk are rendered to match the width of the editor at the time the chunk was executed. The height of the plot is determined by the golden ratio.

指定 fig.size 不会改变宽高比:您实际上改变了图片的整体大小(宽度和高度按比例改变),但是当 RNotebook 向您显示它时,它会自动重新缩放以适合编辑器 window。所以除了字体大小的变化等,你看不到任何区别。

要实际生成更高的图像,您必须指定 fig.asp,例如 fig.asp=1.2