Entering edit mode
7.2 years ago
arronar
▴
290
Hello I have this data.frame and as you can see there are lists inside some cells.
myList1 <- list()
myList1[[1]] <- 0
myList1[[2]] <- list(3)
myList1[[3]] <- list(6)
myList1[[4]] <- list(7, 9)
myList <- list()
myList[[1]] <- list(1, 4, 6, 7)
myList[[2]] <- list(2, 7, 3)
myList[[3]] <- list(5, 5, 3, 9, 6)
myList[[4]] <- list(7, 9)
myDataFrame <- data.frame(row = c(1,2,3,4))
myDataFrame$col1 <- myList1
myDataFrame$col2 <- myList
the data frame looks like:
row col1 col2
1 0 list(1, 4, 6, 7)
2 list(3) list(2, 7, 3)
3 list(6) list(5, 5, 3, 9, 6)
4 list(7, 9) list(7, 9)
Is there any way to unlist the lists and collapse with colon symbol, their items in order to make the dataframe look like the following ?
row col1 col2
1 0 1:4:6:7
2 3 2:7:3
3 6 5:5:3:9:6
4 7:9 7:9
Thank you