我怎样才能缩小R-标记块中的地块的大小?我想渲染一个.pdf,但情节太大了。
ggplot(data = test_datac,repr.plot.width = 7, repr.plot.height = 4) +
geom_line(size=0.5,mapping = aes(x = Period, y = gdpg))我尝试过添加repr.plot.width = 7、repr.plot.height = 4,但这并没有减少尺寸。
发布于 2020-05-01 08:27:37
通过设置fig.height=和fig.width=块参数,可以在R代码块中更改pot大小:
```{r fig.height=8, fig.width=8}[医](虹膜)+
Geom_line(x= Sepal.Length,y= Sepal.Width),大小=0.5
https://stackoverflow.com/questions/61537463
复制相似问题