I want to split up all words in a column so that they get one row each (where the rest of the data columns then gets repeated).
#Example Data
example_words <- c("one two three", "four five", "six")
values <- c(1, 2, 3)
tibble_test <- tibble(example_words, values)
# Expected output
example_words <- c("one", "two", "three", "four", "five", "six")
values <- c(1, 1, 1, 2, 2, 3)
tibble_test <- tibble(example_words, values)
Thanks in advance