美文网首页
2019-12-17 Resizing plots in the

2019-12-17 Resizing plots in the

作者: SYNAPSE_1576 | 来源:发表于2019-12-17 20:45 被阅读0次

library(repr)

#Change plot size to 4 x 3

options(repr.plot.width=4,repr.plot.height=3)

curve(sin(x),from=0,to=2*pi,n=100)

#Change plot size to 8 x 3

options(repr.plot.width=8,repr.plot.height=3)

curve(sin(x),from=0,to=4*pi,n=200)

相关文章

网友评论

      本文标题:2019-12-17 Resizing plots in the

      本文链接:https://www.haomeiwen.com/subject/qopenctx.html