使用超过20个图的情节子图?

时间:2018-05-18 20:00:34

标签: r plotly subplot

我尝试创建一个包含大数字的子图。一个简单的例子:以下代码创建19个空图表工作正常。

plotList <- function(nplots) { lapply(seq_len(nplots), function(x) plot_ly()) } subplot(plotList(19), nrows = 19, shareX = TRUE, shareY = TRUE)

enter image description here 但是,如果图的数量超过20,则会出错。

subplot(plotList(21), nrows = 21, shareX = TRUE, shareY = TRUE)

enter image description here 有办法解决吗?

0 个答案:

没有答案