Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/databio/loadr

Cleaner R workspaces
https://github.com/databio/loadr

Last synced: about 2 months ago
JSON representation

Cleaner R workspaces

Awesome Lists containing this project

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
```