在R中为非排除类别创建虚拟变量

时间:2016-10-15 16:37:45

标签: r dummy-variable

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

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

1 个答案:

答案 0 :(得分:1)

我们可以使用dcast

 dcast(movies[,.(type=unlist(type)) ,movie], movie~type, length)