我有一个有5列的数据框,但我对其中一列“条件”感兴趣。在条件列中,我需要找到一种方法来计算单元格中特定条目的数量。每个列单元格可以有一个条目或多个条目,以**(,)**分隔。因此,我的数据框看起来如下所示
S.NO Conditions
11 Eye Color
12 Sound of your voice
13 Certain disease,Size of a palm,Eye Color
16 Eye Color,Hair color
17 Hair color,Height
18 Sound of your voice,Height
我想计数所有的differnt条目/字符串一次。总计我有35个不同的字符串列表在条件列,我希望我的输出像这样。
输出
Eye color Sound of your voice Certain disease Size of a palm Hair color Height
3 2 1 1 2 2
1条答案
按热度按时间vbkedwbf1#
由于我不知道数据的确切结构,我假设数据如下
数据
对于上述数据,我们可以编写以下代码来获得预期结果
编号
输出