README.md

Project Status: Wip - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public. Build Status Coverage Status Join the chat at https://gitter.im/noamross/upipe

Merging *NIX and magrittr pipelines

upipe() is a modification of R's system() command designed for integration into magrittr / dplyr pipelines.

Install

install.packages(devtools)
install_github('noamross/upipe')

Usage

library(upipe)
upipe(list.files(), 'grep R')
list.files() %>% upipe('grep R')

upipe has methods for specific object types. By default, it converts inputs to chracter. It converts data.frames to CSV.

mtcars %>% upipe('grep Toyota')
1:30 %>% upipe('grep 3')

Suggestions and contributions for other methods are welcome.

Thanks



noamross/upipe documentation built on May 23, 2019, 9:31 p.m.