如何在熊猫中用逗号分隔的单个列中获取多个值的虚拟变量

时间:2019-06-28 15:07:43

标签: python pandas

我有一个这样的数据框:

id    name
1     apple,orange
2     mango, apple
3     apple, mango
4     orange, mango

预期输出:

id     apple  orange mango
1       1      1       0
2       1      0       1
3       1      0       1
4       0      1       1

我尝试过:pandas get dummies for column with list 但不起作用

0 个答案:

没有答案