In my dataframe there are multiple rows for a single observation (each referenced by ref
). I would like to collapse the rows and create new columns for the keyword
column. The outcome would include as many keyowrd
colums as the number of rows for an observation (e.g. keyword_1
, keyword_2
, etc). Do you have any idea? Thanks a lot.
This is my MWE
df1 <- structure(list(rif = c("text10", "text10", "text10", "text11", "text11"),
date = c("20180329", "20180329", "20180329", "20180329", "20180329"),
keyword = c("Lucca", "Piacenza", "Milano", "Cascina", "Padova")),
row.names = c(NA, 5L), class = "data.frame")