Dear Sir,
I would like to facet 200 plots in the one page with fill vectical_layout.
---
title: "example"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: scroll
---
```{r setup, include=FALSE}
library(flexdashboard)
library(plotly)
list_of_plots <- lapply(1:200, function(x) plot_ly(economics, x = ~pop))
Column {data-width=1000}
Chart A
subplot(list_of_plots, nrows = 60,
# l, r, t, b
margin = c(0.01, 0.05, 0.05, 0.01),
heights = rep(1/60, 60), titleY = FALSE)
The picture looks very bad. Please advise