https://github.com/nteract/papermillr
R bindings for papermill
https://github.com/nteract/papermillr
Last synced: about 2 months ago
JSON representation
R bindings for papermill
- Host: GitHub
- URL: https://github.com/nteract/papermillr
- Owner: nteract
- License: bsd-3-clause
- Created: 2017-07-28T00:45:10.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-11-02T23:22:35.000Z (over 4 years ago)
- Last Synced: 2025-03-30T21:02:29.562Z (2 months ago)
- Language: R
- Size: 14.6 KB
- Stars: 14
- Watchers: 55
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# papermillR
R bindings for Papermill.
This package was _roughly_ equivalent to what is now [scrapbook](https://github.com/nteract/scrapbook) which allows you to record values into a notebook for programmatic access.
This package is now deprecated, and you can use R notebooks with papermill directly [as well as many other languages](https://github.com/nteract/papermill/blob/d5299b0f2705d7a9175c377aa2a2f812c83239e3/papermill/translators.py#L543-L550).
## Install
Install using `devtools`
```r
devtools::install_github("nteract/papermillr")
```## Use
```
keys = letters[1:5]
values = as.list(1:5)
pm_record(keys, values)
```