Displaying 1 result from an estimated 1 matches for "whateverpackage".
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 want this include:
* you know that in version X some bug was fixed
* you know that in version X some feature was adde...