Series运算
创建原始数据集
- import pandas as pd
- s3 = pd.Series({'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5} )
- s1 = pd.Series([0, 1, 2, 3, 4])
- s1.index = ['A', 'B', 'C', 'D', 'E']
- s4 = s3.append(s1)
- print('数据集s4:\n',s4,'数据集s3:\n',s3)
复制代码
1、Series减法运算:
Series的减法运算是按照索引计算,如果索引不同则填充为NaN
2、Series加法运算:
Series的加法运算是按照索引计算,如果索引不同则填充为NaN
3、Series乘法运算:
Series的乘法运算是按照索引计算,如果索引不同则填充为NaN
4、Series除法运算:
Series的除法运算是按照索引计算,如果索引不同则填充为NaN
5、Series求中位数:
5、Series求和:
6、Series求最大值和最小值
- print(s4)
- max = s4.max()
- min = s4.min()
- print('max=',max,'\nmin=',min)
复制代码
|