Displaying 1 result from an estimated 1 matches for "packagey".
Did you mean:
packages
2012 Apr 11
3
[patch] giving library() a 'version' argument
I've made a small enhancement to R that would help developers better control what versions of code we're using where. Basically, to load a package in R, one currently does:
library(whateverPackage)
and with the enhancement, you can ensure that you're getting at least version X of the package:
library(whateverPackage, version=3.14)
Reasons one might