Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I do not manage to figure out the difference between require() and library() when loading a package in R. Do you some hint for me?

Thx!

share|improve this question
3  
3  
sheesh, how about reading the help page? – mdsumner Apr 8 '11 at 23:19

2 Answers

up vote 36 down vote accepted

There's not much of one in everyday work.

However, according to the documentation for both functions (accessed by putting a ? before the function name and hitting enter), require is used inside functions, as it outputs a warning and continues if the package is not found, whereas library will throw an error.

HTH.

share|improve this answer
#richiemorrisroe: Thank you. Does it mean that if I load the packages I need at the very beginning of my R-code it does not matter which one I choose? – Marco Apr 8 '11 at 13:20
2  
as long as you are not loading packages inside a function, it really makes no difference. I load all my packages using require, and didnt know what the difference was until i read the help after seeing your question. – richiemorrisroe Apr 8 '11 at 13:43
11  
The other reason I use require is that it keeps me from referring to packages as libraries, a practice that drives the R-cognoscenti up the wall. The library is the directory location where the packages sit. – DWin Apr 8 '11 at 15:53
Very good! Thank you – Marco Apr 8 '11 at 17:57
How funny, require is a stronger word, it implies that you 'must need' something, it should be the one that throws the error, not the other way around.... – ADP Apr 23 at 11:26

dAnother benifit of require() is that it returns a logical value by default. TRUE if the packages is loaded, FALSE if it isn't.

> test <- library("abc")
Error in library("abc") : there is no package called 'abc'
> test
Error: object 'test' not found
> test <- require("abc")
Loading required package: abc
Warning message:
In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE,  :
  there is no package called 'abc'
> test
[1] FALSE

So you can use require() in constructions like the one below. Which mainly handy if you want to distribute your code to our R installation were packages might not be installed.

if(require("lme4")){
    print("lme4 is loaded correctly")
} else {
    print("trying to install lme4")
    install.packages("lme4")
    if(require(lme4)){
        print("lme4 installed and loaded")
    } else {
        stop("could not install lme4")
    }
}
share|improve this answer
Thank you for the additional answer! – Marco Apr 9 '11 at 10:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.