Replies: 1 comment 1 reply
-
|
We're tracking this feature request in #7031. Want to take a look and add any additional detail on your use case? |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
I often have 3+ R sessions simultaneously. They all do effectively the same thing but with different datasets, and due to several factors I use a different R session for each dataset. (Loading different datasets in the same R process is non-negotiable, see my note at the bottom.)
I often make similar plots in the different R sessions. Positron lets me rename the process, so looking at data in the data pane or code output in the console is unambiguous, it's shown in the interpreter-UI selector (visible when multiple processes exist). The plots pane is not so clear: there is no clear indicator in the UI that a plot is from a particular process.
For instance:
mt1 <- mtcars; plot(1, 10).mt2 <- mtcars; plot(2, 20).1,10is from R1 and2,20is from R2, I don't see another indicator.Other than modifying the plot itself (adding a text note, caption, or similar), am I missing something in the interface? If not, are there good non-invasive habits or techniques to work through this?
If no easy techniques exist, some thoughts? I know none of these are easy, but ...
2,10point, something in the pane would show "Process: R2" or suchMore context: I work with NASCAR data, and I'm often looking at multiple series' data for multiple weekends. So for example I might be looking at Cup-series data from Talladega at the same time I'm looking at Truck-series data from Watkins Glen. Each race has many different sets of data, such as laps, pit stops, driver stats, etc. The work I do on both is nearly identical, but if I ever "cross the streams", things get really weird.
Beta Was this translation helpful? Give feedback.
All reactions