Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/databio/loadr
Cleaner R workspaces
https://github.com/databio/loadr
Last synced: 27 days ago
JSON representation
Cleaner R workspaces
- Host: GitHub
- URL: https://github.com/databio/loadr
- Owner: databio
- License: other
- Created: 2018-04-25T20:49:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-19T21:59:32.000Z (over 3 years ago)
- Last Synced: 2024-09-12T04:08:00.314Z (3 months ago)
- Language: R
- Homepage: http://code.databio.org/loadr
- Size: 19.5 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - databio/loadr - Cleaner R workspaces (R)
README
# loadr: Cleaner R workspaces
`loadr` is meant to help declutter R workspaces for very complex analyses that use substantial reference data, like is common in genomics. It provides a few functions that encourage you to use R `environment` objects to organize your variables so they are not all in the primary workspace. By sequestering reference data into a separate 'shared variable' environment, you make it easier to find R objects you're actively using.
## Install
```R
devtools::install_github("databio/loadr")
```## Quick start:
```{r}
library('loadr')
eload(list(myReferenceDataVar=15))
SV$myReferenceDataVar
```