unrowwise | R Documentation |
Remove row-wise grouping created with dplyr::rowwise()
while preserving
any other grouping declared with dplyr::group_by()
.
unrowwise(data)
data |
A tibble. |
A tibble.
titanic |> dplyr::rowwise()
titanic |> dplyr::rowwise() |> unrowwise()
titanic |> dplyr::group_by(Sex, Class) |> dplyr::rowwise()
titanic |> dplyr::group_by(Sex, Class) |> dplyr::rowwise() |> unrowwise()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.