I am trying to speed up my performance of existing code and converting dataframe syntax to data.table as I believe it provides functions faster than anyone. I want to do full outer join with data.tables but I do not know the keys (large columns and did not mention any key in existing code) then how I can use data.table for that?
df<-merge(df, x, all = TRUE)
DT[X,]
table? Is there any other way to speed up the performance using other stuff?