Re: [R] sorting by creation time in ls(), , * This message: [ Message body ] [ More options

2009-03-18 Thread Carl Witthoft
You could do it indirectly by saving your command history (a good idea in any case :-) ), doing {something} to dump it to a file, and sorting/seeking to see in what order you created items. Or, if you're really creative ^_^, write some sort of script/function which automatically creates a me

Re: [R] sorting by creation time in ls()

2009-03-17 Thread Tony Plate
R doesn't keep track of when objects were created, so that's not possible. If this is important to you, you could look at the 'trackObjs' package, which does this and also stores individual objects in individual files (and writes them to the file when they are changed in R). -- Tony Plate Ale

[R] sorting by creation time in ls()

2009-03-17 Thread Alexy Khrabrov
When trying to remember what did I do in the session, especially after coming back to it after a few days, I'd like to mimic Unix's ls -ltrh -- does R retain the timing a certain variable is created? If not, would it make a useful addition, to have ls with an option to sort by creation tim