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!
|
|
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. |
|||||||||||||||
|
|
dAnother benifit of require() is that it returns a logical value by default. TRUE if the packages is loaded, FALSE if it isn't.
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.
|
||||
|
|