我想创建类别的二进制表示。我知道如何排除类别(使用插入包),但不是一种直接的方法来排除非排除类别。例如
movies <- data.table(movie=c( "batman", "bighero6"), type=list("action",c("action","animation")))
movie type
1: batman action
2: bighero6 action,animation
我想获得类似的东西
action animation
batman 1 0
bighero6 1 1
答案 0 :(得分:1)
我们可以使用dcast
dcast(movies[,.(type=unlist(type)) ,movie], movie~type, length)