We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As you can check in this SE post, subplot is not working for more then 9 plots, for nrows = 4. Here is a sample code:
subplot
nrows = 4
library(plotly) p <- plot_ly(economics, x = date, y = uempmed) qtySubPlots <- 10 options <- list(nrows=4) plots <- lapply(seq(1,qtySubPlots), function(x) {p}) do.call(subplot, c(plots,options))
Other nrows combinations have the same problem.
nrows
The text was updated successfully, but these errors were encountered:
84496d0
No branches or pull requests
As you can check in this SE post,
subplot
is not working for more then 9 plots, fornrows = 4
. Here is a sample code:Other
nrows
combinations have the same problem.The text was updated successfully, but these errors were encountered: