Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months ago
JSON representation
Some extra functionality that is not (yet) in dplyr, e.g. mutate_rows or s_filter, s_arrange ,...
- Host: GitHub
- URL: https://github.com/skranz/dplyrExtras
- Owner: skranz
- Created: 2014-05-25T07:26:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-05-18T19:58:28.000Z (over 4 years ago)
- Last Synced: 2024-06-11T08:49:16.784Z (5 months ago)
- Topics: dplyr, r
- Language: R
- Homepage:
- Size: 29.3 KB
- Stars: 20
- Watchers: 3
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - skranz/dplyrExtras - Some extra functionality that is not (yet) in dplyr, e.g. mutate_rows or s_filter, s_arrange ,... (R)
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")
```