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
- Host: GitHub
- URL: https://github.com/mdlincoln/storrmap
- Owner: mdlincoln
- License: other
- Created: 2018-09-20T23:45:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-25T00:37:12.000Z (over 6 years ago)
- Last Synced: 2024-08-13T07:15:40.910Z (8 months ago)
- Language: R
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - mdlincoln/storrmap - Use purrr's map in conjunction with storr's persistent R object storage (R)
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```# storrmap
[](https://travis-ci.org/mdlincoln/storrmap)
[](https://ci.appveyor.com/project/mdlincoln/storrmap)
[](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
```