Guest User

Untitled

a guest
Dec 11th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. library(dplyr)
  2. system.time(df3 <- left_join(select(df1, lat, lon, id, time_hour),
  3. select(df2, lat, lon, var1, var2, time_words),
  4. by = c('lat', 'lon', 'time_hour' = 'time_words')
  5. )
  6. )
  7. #21.37 seconds
Add Comment
Please, Sign In to add comment