使用超过9个图的R的Plotly Subplots中的错误

时间:2016-01-25 20:38:18

标签: plotly

如果我执行此代码,请使用qtySubPlots <- 9

library(plotly)

p <- plot_ly(economics, x = date, y = uempmed)

qtySubPlots <- 9
options <- list(nrows=4)
plots <- lapply(seq(1,qtySubPlots), function(x) {p})
do.call(subplot, c(plots,options))

我得到了这个美丽的网格:

enter image description here

现在为任何大于9的值设置qtySubPlots(例如10)我得到:

enter image description here

有任何线索如何解决?

Issue #427

0 个答案:

没有答案