I have a tibble similar to:
tibble(
x = c("christmas", "christmas", "car", "dog")
y = c("one","two","three", "four")
)
and then I have another tibble like:
tibble(
x = c("christmas", "dog")
)
Notice the two christmas' that are in the first tibble. I want to use the second tibble's column to output new columns from the first:
tibble(
x = c("christmas","christmas", "dog")
y = c("one","two","four")
)