Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 608 Bytes

File metadata and controls

27 lines (20 loc) · 608 Bytes

Combining Tables

last_namefirst_nameID
ax1
by2
cz3
IDval1
1ice cream
2cookie
3fried chicken
require(tidyverse)
combined= left_join(master,record,by="ID")