conflicted
conflicted copied to clipboard
"summarize()" isn't considered to be in dplyr, even though it's a synonym for "summarise()"
Listed as synonyms here.
What's the issue?
Apologies for not going into more detail. Noodling around a little more, it looks to be maybe a display issue, and/or associated with duckplyr. The output from these commands:
library(dplyr)
library(duckplyr)
library(Hmisc)
library(conflicted)
mtcars %>% summarize(mean = mean(disp))
suggests that duckplyr masks dplyr::summarize()
without acknowledging it. Then conflicted() doesn't list dplyr::summarize()
. But maybe summarize()
is the same in dplyr and duckplyr? (In any case they operate the same in this circumstance.)
RStudio output: