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

https://github.com/mdlincoln/storrmap

Use purrr's map in conjunction with storr's persistent R object storage
https://github.com/mdlincoln/storrmap

Last synced: 4 months ago
JSON representation

Use purrr's map in conjunction with storr's persistent R object storage

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```

# storrmap

[![Travis-CI Build Status](https://travis-ci.org/mdlincoln/storrmap.svg?branch=master)](https://travis-ci.org/mdlincoln/storrmap)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/mdlincoln/storrmap?branch=master&svg=true)](https://ci.appveyor.com/project/mdlincoln/storrmap)
[![Coverage Status](https://img.shields.io/codecov/c/github/mdlincoln/storrmap/master.svg)](https://codecov.io/github/mdlincoln/storrmap?branch=master)

The goal of storrmap is to iterate over R objects that are too large to fit in memory with an interface between purrr's `map` function and storr's persistent key/value stores.

## Installation

You can install storrmap from github with:

```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("mdlincoln/storrmap")
```

## Example

This is a basic example which shows you how to solve a common problem:

```{r example}
## basic example code
```