How do you use multiple versions of the same R package?

In order to be able to compare two versions of a package, I need to able to choose which version of the package that I load. R's package system is set to by default to overwrite existing packages, so that you always have the latest version. How do I override this behaviour?

My thoughts so far are:

I could get the package sources, edit the descriptions to give different names and build, in effect, two different packages. I'd rather be able to work directly with the binaries though, as it is much less hassle.

I don't necessarily need to have both versions of the packages loaded at the same time (just installed somewhere at the same time). I could perhaps mess about with Sys.getenv('R_HOME') to change the place where R installs the packages, and then .libpaths() to change the place where R looks for them. This seems hacky though, so does anyone have any better ideas?


You could selectively alter the library path. For complete transparency, keep both out of your usual path and then do

 library(foo, lib.loc="~/dev/foo/v1")    ## loads v1

and

 library(foo, lib.loc="~/dev/foo/v2")    ## loads v2

The same works for install.packages() , of course. All these commands have a number of arguments, so the hooks you aim for may already be present. So don't look at changing R_HOME , rather look at help(install.packages) (assuming you install from source).

But AFAIK you cannot load the same package twice under the same name.

链接地址: http://www.djcxy.com/p/57476.html

上一篇: 计时器延迟是随着时间的推移而降低还是变得不一致?

下一篇: 你如何使用同一个R包的多个版本?