I am trying to merge two large data frames with bind_rows.
df<-bind_rows(df1,df2)
The result is that R cannot allocate a vector of n size.
I want to do this because I need to arrange and export it in a txt.
df<-df%>%
arrange(date,id)
What can i do?