Reputation: 2150
I realise this is prolly a very basic question but I've searched around and can't work out how to do it.
When I open RStudio shown along with the various scripts above the top left window are two matrices I was working with in the last session "x" and "y". They are shown with a "excel" like symbol beside them. How can I load these into the current workspace?
Baz
Upvotes: 0
Views: 2433
Reputation: 59425
Here's one possibility.
The view you see in the top right window is not updated automatically when you change your data. So for example, if you have a df called x
and view it, then remove it, the view is still displayed but x
is gone.
So in the screenshot below, the environment is empty (no objects at all), but x is still displayed.
Upvotes: 3