dataframe.sum()函数

Posted 水利IT人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dataframe.sum()函数相关的知识,希望对你有一定的参考价值。

官方帮助文档解释;

DataFrame.sum(axis=Noneskipna=Nonelevel=Nonenumeric_only=None**kwargs)

axis : {index (0), columns (1)},axis=0代表对列进行求和,axis=1代表对行进行求和。

调用DataFrame的sum方法将会返回一个含有列小计的Series:传入axis=1将会按行进行求和运算:

  1. In [111]: df  
  2. Out[111]:   
  3.     one  two  
  4. a  1.40  NaN  
  5. b  7.10 -4.5  
  6. c   NaN  NaN  
  7. d  0.75 -1.3  
[python] view plain copy
  1.   
[python] view plain copy
  1. In [112]: df.sum()  
  2. Out[112]:   
  3. one    9.25  
  4. two   -5.80  
[python] view plain copy
  1.   
[python] view plain copy
  1. In [113]: df.sum(axis=1)  
  2. Out[113]:   
  3. a    1.40  
  4. b    2.60  
  5. c     NaN  
  6. d   -0.55  
  7. dtype: float64 

以上是关于dataframe.sum()函数的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——声明函数

VSCode自定义代码片段8——声明函数

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

在 Visual Studio 中创建构造函数的代码片段或快捷方式

调用模板化成员函数:帮助我理解另一个 *** 帖子中的代码片段

web代码片段