library(dplyr)
df %>%
select(starts_with("a"))
Throws an error:
Error in select(., starts_with("special_int")) :
unused argument (starts_with("special_int"))
The error resolves when I specify dplyr in front of the function, as in ```dplyr::select()``
Does anyone know why this happens and how to prevent it?