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
I only just discovered rows_update() and was excited because I need this kind of function often. But I was foiled the first time I tried to use it because it doesn't allow duplicate keys.
library(dplyr)
fruity<- tribble(
~fruit, ~taste,
"apple", "sweet",
"orange", "sour"
)
truth_about_oranges<- tribble(
~fruit, ~taste,
"orange", "sweet"
)
fruity %>%
rows_update(truth_about_oranges, by="fruit")
#> # A tibble: 2 x 2#> fruit taste#> <chr> <chr>#> 1 apple sweet#> 2 orange sweetfruity_dup<- tribble(
~fruit, ~taste,
"apple", "sweet",
"orange", "sour",
"orange", "bitter"
)
fruity_dup %>%
rows_update(truth_about_oranges, by="fruit")
#> Matching, by = "fruit"#> Error: `x` key values are not unique.
In this case, I expect that the
2
and3
indf1$y
would both be updated to4
.I would expect that, in
rows_update()
, they
data frame should have unique keys, but thex
data frame should not have that restriction.Possibly consider how this affects other
rows_*()
functionsThe text was updated successfully, but these errors were encountered: