I am trying to code a set of functions to check for missing R packages, and to install them if necessary. There's some good code to do that at StackOverflow: start here.
I would like to make the functions as silent as possible, especially since R returns even successful messages in red ink. Accordingly, I have tried to pass the quietly = TRUE argument to both library and require.
However, these options never seem to work:
# attempt to get a silent fail
require(xyz, quietly = TRUE)
Warning message:
In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called ‘xyz’
How can I get require to fail silently, and what am I not getting about the quietly option?
The documentation says:
quietlya logical. If TRUE, no message confirming package loading is printed, and most often, no errors/warnings are printed if package loading fails.
But it seems to me "most often" should be "almost never" in my personal experience. I would happily hear about your experience with that. Rationale: coding functions to help students.
Add. The same question applies to quiet = TRUE in install.packages(). It kills only the progress bar, but not the "downloaded binary packages are in" message (printed in black, yay!) that follows, even though it has no use to the median user.
Add. In case this might be of interest to anyone, the code so far:
## getPackage(): package loader/installer
getPackage <- function(pkg, load = TRUE, silent = FALSE, repos = "http://cran.us.r-project.org") {
if(!suppressMessages(suppressWarnings(require(pkg, character.only = TRUE, quietly = TRUE)))) {
try(install.packages(pkg, repos = repos), silent = TRUE)
}
if(load) suppressPackageStartupMessages(library(pkg, character.only = TRUE, quietly = TRUE))
if(load & !silent) message("Loaded ", pkg)
}
## Not run:
x <- c("ggplot2", "devtools") # etc.
lapply(x, getPackage, silent = TRUE)
I'm thinking of just quitting the effort to use quietly in the function above, given that it does not seem to work when expected. I should probably ask the R userlists about that to get an explanation from the core devteam. The suppressMessages(suppressWarnings(require(...))) workaround can be unstable in my experience.
requireandlibraryto see exactly whatquietlydoes. Unfortunately those functions are a mess of spaghetti code. Also read the source code forinstall.packagesto see how complicated (unzip a file into a directory) you can make a simple process. – hadley Feb 13 at 13:01require: it's a lot of nested conditionals. Thequietlyargument kills additional error information, but does not suppress theLoading...messages. Students find it bothering, especially in red ink. One of R's idiosyncrasies. My favourite is the information passed byinstall.packagesat the end, probably withcat: "The downloaded packages are now in (temporary and incomprehensible folder path)". – Fr. Feb 14 at 5:58