我想使用spin()并排显示2个图 如果我有
#' ### 4.2. Display
#+ fig.show='hold', fig.width=5, fig.height=5
plot(1:10,1:10, type="p", main="Left")
plot(1:10,1:10, type="p", main="Right")
#' fin
运行spin(),然后单击RStudio中* .md文件的html预览,我得到我想要的。但是,如果我尝试 为了增加地块的大小,它们是垂直排列的:
#' ### 4.2. Display
#+ fig.show='hold', fig.width=8, fig.height=8
plot(1:10,1:10, type="p", main="Left")
plot(1:10,1:10, type="p", main="Right")
#' fin
我以为我可以增加out.width,但这似乎影响了 分辨率而不是实际尺寸。 有没有办法增加html页面的宽度,以便两者兼而有之 8in的图可以按大小排列吗?
由于