Hi I have 3 tibbles called 'A', 'B' and 'C', each has a column entitled 'Area' and some additional columns. I am looking to merge all 3 in to one tibble that has joins on 'Area' and keeps the other columns.
I have tried, can anyone correct please?
Testertable <- merge(A, B, C, by "Area")
Testertable <- full_join(A, B, C, by = "Area")