I'm using plotly
to generate plots in my code and then using orca
to save them as pdf files (for incorporating into my LaTeX report). It takes a bit of time to save the plots and I would like to do it all in one shot using a list
and lapply
.
I can manually add all the plots to a list and then use lapply
but was wondering if there's a way to identify all plotly
plots from ls()
. Perhps, something similar to tables()
from data.table
?