我试图了解如何在python中对数据框执行算术运算。
import pandas as pd
import numpy as np
df = pd.DataFrame({'col1':[2,38,7,5],'col2':[1,3,2,4]})
print (unsorted_df.sum())
这就是我要得到的(就输出而言),但是我想对我得到的总和有更多的控制。
col1 52
col2 10
dtype: int64
只是想知道如何将数据框中的各个元素添加在一起。
答案 0 :(得分:-1)
您的问题不是很清楚,但是我仍然会尝试涵盖所有可能的情况,
输入:
df
col1 col2
0 2 1
1 38 3
2 7 2
3 5 4
如果您想要列的总和,
df.sum(axis = 0)
输出:
col1 52
col2 10
dtype: int64
如果您想要总行数,
df.sum(axis = 1)
0 3
1 41
2 9
3 9
dtype: int64
如果要将数字列表添加到列中,
num = [1, 2, 3, 4]
df['col1'] = df['col1'] + num
df
输出:
col1 col2
0 3 1
1 40 3
2 10 2
3 9 4
如果要在一行中添加数字列表,
num = [1, 2]
df.loc[0] = df.loc[0] + num
df
输出:
col1 col2
0 3 3
1 38 3
2 7 2
3 5 4
如果您想在列中添加一个数字, df ['col1'] = df ['col1'] + 2 df
输出:
col1 col2
0 4 1
1 40 3
2 9 2
3 7 4
如果要在一行中添加一个数字,
df.loc[0] = df.loc[0] + 2
df
输出:
col1 col2
0 4 3
1 38 3
2 7 2
3 5 4
如果要将数字添加到任何数字(第i行和第j列的元素),
df.iloc[1,1] = df.iloc[1,1] + 5
df
输出:
col1 col2
0 2 1
1 38 8
2 7 2
3 5 4