Could Plots pane show all figures created using purrr::map() or similar? #4614
Unanswered
mpaulacaldas
asked this question in
Feedback
Replies: 1 comment
-
We've got this tracked in #727 if you'd like to add any additional details. Thank you for the feedback! 🙌 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I'm doing EDA within RStudio, I often create many images at once using a combination of
ggplot2
andpurrr::map()
, which I then quickly scroll through in the Plots pane. If I try to do the same in Positron (v 2024.09.0-1), only the last image gets rendered and it's impossible to navigate to the others in the Plots pane.Code example
In RStudio (I can scroll to previous figures)
In Positron (only last figure is available)
Would it be possible to support this sort of use-case in the Plots pane? It is a fairly common EDA pattern for me, but I suspect also for other frequent users of
purrr::map()
withggplot2
. It's a really useful pattern for medium-sized data sets where there are too many features/categories to plot in a single graph, but still few enough that we can manually go through each figure. There are of course work-arounds (e.g. assign the plots to an object and inspect each one, or save the images on disk), but they kind of slow downthe flow of exploration.
Beta Was this translation helpful? Give feedback.
All reactions