1

我想创建类别的二进制表示。我知道如何排除类别(使用 caret 包),但不是一种直接的方法来排除非排除类别。例如

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

4

1 回答 1

1

我们可以用dcast

 dcast(movies[,.(type=unlist(type)) ,movie], movie~type, length)
于 2016-10-15T16:39:23.997 回答