Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/skranz/dplyrExtras

Some extra functionality that is not (yet) in dplyr, e.g. mutate_rows or s_filter, s_arrange ,...
https://github.com/skranz/dplyrExtras

dplyr r

Last synced: about 1 month ago
JSON representation

Some extra functionality that is not (yet) in dplyr, e.g. mutate_rows or s_filter, s_arrange ,...

Awesome Lists containing this project

README

        

dplyrExtras
==============

Some extra functionality that was mainly helpful for older dplyr versions can still be useful but is somewhat less relevant now:

- `mutate_rows` mutate selected rows (see https://github.com/hadley/dplyr/issues/425)

Note 1: The function was originally called `mutate_if`.
It was renamed to `mutate_rows` since dplyr 0.5 introduced an own `mutate_if` function with quite
different behavior.

- `s_filter`, `s_arrange` ,... allowing string arguments (see https://github.com/hadley/dplyr/issues/333)

To install in R, first install the package devtools from CRAN and then run

```
library(devtools);
install_github(repo="skranz/dplyrExtras")
```