You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice if ... (the name-value pairs) in spread_values() would work like in dplyr::mutate(). By this I mean being able to write code like:
tbl_json %>%
spread_values(
mean = jnumber(mean),
counts = as.integer(jnumber(counts))
)
i.e, specify computations immediately inline such as as.integer().
The text was updated successfully, but these errors were encountered:
ramiromagno
changed the title
Make spread_values(.x, ...) work like dplyr::mutate(.data, ...)
Make spread_values(.x, ...) work more like dplyr::mutate(.data, ...)Jan 8, 2021
It would be nice if
...
(the name-value pairs) inspread_values()
would work like indplyr::mutate()
. By this I mean being able to write code like:i.e, specify computations immediately inline such as
as.integer()
.The text was updated successfully, but these errors were encountered: