繁体   English   中英

如何计算两列中唯一字符串的数量?

[英]How to count number of unique strings in two columns?

我有一个包含两列包含字符串的DataFrame,例如:

col1 --- col2
恩斯特-吉姆
彼得-恩斯特
比尔-NaN
NaN ---道格
吉姆-杰克

现在,我想创建一个新的DataFrame,第一列中包含一个唯一字符串列表,第二列中的两个原始列中每个字符串的出现次数,例如:

str --- 发生
恩斯特-2
彼得--- 1
比尔--- 1
吉姆-2
杰克--- 1
道格-1

如何以最有效的方式做到这一点? 谢谢!

首先将原始的两列合并为一个:

In [127]: s = pd.concat([df.col1, df.col2], ignore_index=True)

In [128]: s
Out[128]: 
0    Ernst
1    Peter
2     Bill
3      NaN
4      Jim
5      Jim
6    Ernst
7      NaN
8     Doug
9     Jake
dtype: object

然后使用value_counts

In [129]: s.value_counts()
Out[129]: 
Ernst    2
Jim      2
Bill     1
Doug     1
Jake     1
Peter    1
dtype: int64

我会这样做(假设您从文件your_file.txt获取数据,并且您想打印出结果):

from collections import Counter;

separator = ' --- '
with open('your_file.txt') as f:
    content = f.readlines()  # here you got a list of elements corresponding to the lines
    people = separator.join(content).split(separator) # here you got a list of all elements
    people_count = Counter(people) # you got here a dict-like object with key=name value=count
    for name, val in people_count.iteritems():
        # print the column the way you want
        print '{name}{separator}{value}'.format(name=name, separator=separator, value=val)

该示例使用Counter对象,该对象使您可以从可迭代对象中有效地计数元素。 其余代码仅是字符串操作。

尝试这个:

df = pd.DataFrame({"col1" : ["Ernst", "Peter","Bill",np.nan,"Jim"],
 "col2" : ["Jim","Ernst",np.nan,"Doug","Jake"]})
print df
df1 = df.groupby("col1")["col1"].count()
df2 = df.groupby("col2")["col2"].count()
print df1.add(df2,fill_value=0)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM