I've seen a half dozen or so solutions to this on Stack Overflow, but, all dealing with matches within a single data frame using 'within'. I need a solution that goes across multiple dataframes:
I have values in a column in Data Frame 1
DF1$A: "1, 2, 1, 3, 2, 6, 4, 5, 8, 8, 2, 7, 4, etc."
I have a second data frame with the 'key' to these codes
DF2$A: "1, 2, 3, 4, 5, 6, 7, 8, 9, 10"
DF2$B: "Pie, Pizza, Hamburgers, etc."
How do I change the values in DF1$A to match the values in DF2$B ?