Having a dataframe like this:
data.frame(id = c(1,2), text = c("Google,Amazon", "Amazon,Yahoo"), stringsAsFactors = FALSE)
# id text
# 1 1 Google,Amazon
# 2 2 Amazon,Yahoo
How is it possible to create from text column using as separator the comma. Example of expected output:
data.frame(id = c(1,2), Google = c(1,0), Amazon = c(1,1), Yahoo = c(0,1))
# id Google Amazon Yahoo
# 1 1 1 1 0
# 2 2 0 1 1