View source: R/dplyr-funcs-agg.R
one | R Documentation |
Returns one arbitrary value from the input for each group. The function is biased towards non-null values: if there is at least one non-null value for a certain group, that value is returned, and only if all the values are null for the group will the function return null.
one(...)
... |
Unquoted column name to pull values from. |
## Not run:
mtcars |>
arrow_table() |>
group_by(cyl) |>
summarize(x = one(disp))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.