1

我希望有人可能知道如何控制此页面底部的绘图大小:

https://drive.google.com/open?id=0BwVoW6BAobRDY3hJaHpReDBrbmM

我对 Rmarkdown 完全陌生。我玩过fig.widthfig.height但无济于事。

4

1 回答 1

1

在您的绘图中,添加+ coord_fixed()以固定纵横比。ani.width您可以使用和更改 GIF 的大小ani.height,因此:

p <- p + coord.fixed()

gg_animate(p, 'output.gif', ani.width = 1000, ani.height = 1000)
于 2016-06-06T04:50:05.597 回答