Displaying 1 result from an estimated 1 matches for "myboth".
2008 Apr 13
1
.Rprofile, date tagging history, loading packages
...t 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 this just as good? Does it even need to be in
the .First f...