Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUsing dplyr::bind_rows() instead of dplyr::rbind_all() #482
Conversation
Use bind_rows() instead of rbind_all()
up `dplyr` requirement to 0.5.0 for `bind_rows()`
We're tidyverse/dplyr#4579 in the process of releasing dplyr 0.8.4 and this package fail at our reverse dependency checks because the
dplyr::rbind_all()function has been formally removed after being deprecated for many versions.We might revert that decision because it affects a handful of packages, but in any case even if
rbind_all()stays a little longer, you still should usebind_rows()instead.