https://github.com/gmbecker/switchr
An R package for managing and seamlessly switching between sets of installed R packages.
https://github.com/gmbecker/switchr
Last synced: 2 months ago
JSON representation
An R package for managing and seamlessly switching between sets of installed R packages.
- Host: GitHub
- URL: https://github.com/gmbecker/switchr
- Owner: gmbecker
- Created: 2014-07-18T21:27:27.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-06-09T17:59:23.000Z (over 1 year ago)
- Last Synced: 2024-12-09T21:32:15.069Z (2 months ago)
- Language: R
- Homepage: http://google.com AND http://blabla.com
- Size: 718 KB
- Stars: 59
- Watchers: 8
- Forks: 6
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - gmbecker/switchr - An R package for managing and seamlessly switching between sets of installed R packages. (R)
README
switchr
=======An R package for managing, installing into, and seamlessly switching
between R package libraries ("software contexts")To switch to a different library, creating it if necessary, use the `switchTo`
function:
```
switchTo("mynewlib")
```Then work normally, when you wish to switch back to your original library,
use `switchBack`:```
switchBack()
```