你能帮我理解下面提到的陈述之间的区别吗?鉴于 Survived 列包含二进制数据 (0,1),它们给出了不同的答案:
Can you help me understand the difference between the statements mentioned below? Given that Survived column contains binary data (0,1), they give different answers:
df_train[df_train.Sex == 'female'].Survived.count()
df_train[df_train.Sex == 'female'].Survived.sum()
sum() for like 1+0 = 1. 如果数据是 3 和 3 则返回 6.
sum() is for like 1+0 = 1. if data is 3 and 3 then it return 6.
count() 返回行数.所以它会返回 2.
count() return number of row. so it will return 2.
简单:)
这篇关于 pandas 中的 sum() 和 count() 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
列表字典中的总和值Sum values in a dict of lists(列表字典中的总和值)
如何在 Python 中对文本文件中的数字求和How to sum numbers from a text file in Python(如何在 Python 中对文本文件中的数字求和)
什么是类似于 sum() 的减法函数,用于减去列表中What is a subtraction function that is similar to sum() for subtracting items in list?(什么是类似于 sum() 的减法函数,用于减去列表中的
Python 等价于 sum() 使用 xor()Python equivalent of sum() using xor()(Python 等价于 sum() 使用 xor())
python中的求和矩阵列sum matrix columns in python(python中的求和矩阵列)
N个列表元素的总和pythonsum of N lists element-wise python(N个列表元素的总和python)