search for: myautoload

Displaying 1 result from an estimated 1 matches for "myautoload".

Did you mean: myautoloads
2008 Apr 13
1
.Rprofile, date tagging history, loading packages
...story for Sun Apr 13 09:43:50 2008 Is this possible? I have it print the date at startup, but that doesn't appear as part of the history. Also, I'm loading two packages at startup, which is working fine with this code: local({ myOriginal <- getOption("defaultPackages") myAutoLoads <- c("Hmisc","ggplot2") myBoth <- c(myOriginal,myAutoLoads) options(defaultPackages = myBoth) }) But when reading AITR, I noticed it has a .Rprofile example that looks much simpler. It just loads the one additional package without checking the defaultPackages. Is...