Description Usage Arguments Details Value Examples
View source: R/dplyr_methods.R
See [this repository](https://github.com/jennybc/row-oriented-workflows) for alternative ways to perform row-wise operations.
1 | rowwise(.data)
|
.data |
Input data frame. |
'rowwise()' is used for the results of [do()] when you create list-variables. It is also useful to support arbitrary complex operations that need to be applied to each row.
Currently, rowwise grouping only works with data frames. Its
main impact is to allow you to work with list-variables in
[summarise()] and [mutate()] without having to
use [[1]]
. This makes 'summarise()' on a rowwise tbl
effectively equivalent to [plyr::ldply()].
A 'tbl'
A 'tbl'
1 2 3 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.