更改 R 中成对图的绘图大小

pra*_*432 7 r

我有这个对图

在此输入图像描述

我想让这个情节更大,但我不知道如何。

我试过了

window.options(width = 800, height = 800)
Run Code Online (Sandbox Code Playgroud)

但一切都没有改变。

为什么?

Ric*_*ven 3

那东西很大。我会把它发送成pdf格式。

> pdf(file = "yourPlots.pdf")
> plot(...)  # your plot
> dev.off()  # important!
Run Code Online (Sandbox Code Playgroud)

另外,这篇文章中还有关于窗口大小问题的答案。