Replies: 2 comments 3 replies
-
Hello! Did you forget something? ;) |
Beta Was this translation helpful? Give feedback.
0 replies
-
To do it right, this is a feature that's unfortunately much harder than it looks. With that said, if your code cells are the source of most of the computation, maybe you can use something like the knitr cache? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
We are using rmarkdown to create reports with a lot of dynamic graphs (plotly-like). As it appeared that rmarkdown was too slow to generate the reports and the reports were too slow to be rendered in the browser we came up with a solution that would save an image of the graph and a clickable link to the standalone dynamic plot (which is saved as html on another non blocking thread).
With this we're back to a workable state.
Something we never really managed to do is to be able to use previews, we know about caching but it means loading the cache rds file and that's too slow. We improved the format of the cache to use qs as opposed to rds but the problem remains.
Ideally we'd like to be able to use preview by rendering the document again and again in the same session (so data stays available) but only regenerating the part of the markdown document that correspond to a chunk or cell that changed since last save. Said otherwise if a chunk has not changed it's like it would be eval=FALSE (but the output in the markdown output would stay).
Is it something that can be achieved with quarto (we do not care switching from rmarkdown to quarto and from say knitr to jupyter for the engine)
Beta Was this translation helpful? Give feedback.
All reactions