Is there a way to have the Environment Pane order itself by time of creation. Sometimes I have large scripts with lots of intermediate datasets that I just want to see the last few datasets created before I start picking thing apart.
There isn't any built-in way to do this, because neither R nor RStudio track when objects were created. But there are a few things you could do:
- name your datasets so that newer ones sort alphabetically in the way you want
- use
rm()
to remove datasets you don't need any more - file a feature request for the IDE to add this feature
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.