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
When tried to create a dataframe from out using rbind_all got the following error
extdata_path<-"https://raw.githubusercontent.com/csgillespie/efficientR/master/extdata/"out<-readr::read_rds(paste0(extdata_path, "out-ice.Rds"))
df=dplyr::rbind_all(out, id="Year")
#> Error: 'rbind_all' is not an exported object from 'namespace:dplyr'
Fix
Now dplyr offers bind_rows function to bind data-frames which should be used instead of rbind_all
Code snippet from 1.6.3 Profiling contains a function
dplyr::rbind_all()
which is no longer supported the current version of dplyr package.Code snippet from book
When tried to create a dataframe from out using
rbind_all
got the following errorFix
Now
dplyr
offers bind_rows function to bind data-frames which should be used instead ofrbind_all
Please note that I am using
dplyr
version 1.0.8The text was updated successfully, but these errors were encountered: