Pandas:如何减去两个 dataframe


您可以使用以下语法从另一个 pandas DataFrame 中减去一个 pandas DataFrame:

 df1. subtract (df2)

如果每个 DataFrame 中有一个字符列,则可能需要先将其移动到每个 DataFrame 的索引列:

 df1. set_index (' char_column '). subtract ( df2.set_index (' char_column '))

以下示例展示了如何在实践中使用每种语法。

示例 1:减去两个 Pandas DataFrame(仅限数字列)

假设我们有以下两个仅包含数字列的 pandas DataFrame:

 import pandas as pd

#create first DataFrame
df1 = pd. DataFrame ({' points ': [5, 17, 7, 19, 12, 13, 9, 24],
                    ' assists ': [4, 7, 7, 6, 8, 7, 10, 11]})

print (df1)

   assist points
0 5 4
1 17 7
2 7 7
3 19 6
4 12 8
5 13 7
6 9 10
7 24 11

#create second DataFrame
df2 = pd. DataFrame ({' points ': [4, 22, 10, 3, 7, 8, 12, 10],
                    ' assists ': [3, 5, 5, 4, 7, 14, 9, 5]})

print (df2)

   assist points
0 4 3
1 22 5
2 10 5
3 3 4
4 7 7
5 8 14
6 12 9
7 10 5

下面的代码展示了如何减去两个DataFrame之间对应的值:

 #subtract corresponding values between the two DataFrames
df1. subtract (df2)

	assist points
0 1 1
1 -5 2
2 -3 2
3 16 2
4 5 1
5 5 -7
6 -3 1
7 14 6

示例 2:减去两个 Pandas DataFrame(字符列和数字列的混合)

假设我们有以下两个 pandas DataFrame,每个 DataFrame 都有一个名为team的字符列:

 import pandas as pd

#create first DataFrame
df1 = pd. DataFrame ({' team ': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'],
                    ' points ': [5, 17, 7, 19, 12, 13, 9, 24],
                    ' assists ': [4, 7, 7, 6, 8, 7, 10, 11]})

print (df1)

  team points assists
0 to 5 4
1 B 17 7
2 C 7 7
3 D 19 6
4 E 12 8
5 F 13 7
6 G 9 10
7:24 a.m. 11

#create second DataFrame
df2 = pd. DataFrame ({' team ': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'],
                    ' points ': [4, 22, 10, 3, 7, 8, 12, 10],
                    ' assists ': [3, 5, 5, 4, 7, 14, 9, 3]})

print (df2)

  team points assists
0 to 4 3
1 B 22 5
2 C 10 5
3 D 3 4
4 E 7 7
5 F 8 14
6 G 12 9
7:10 a.m. 3

下面的代码展示了如何将team列移动到每个 DataFrame 的索引列,然后减去两个 DataFrame 之间对应的值:

 #move 'team' column to index of each DataFrame and subtract corresponding values
df1. set_index (' team '). subtract ( df2.set_index (' team '))

	assist points
team		
At 1 1
B-52
C -3 2
D 16 2
E 5 1
F 5 -7
G -3 1
H 14 8

其他资源

以下教程解释了如何在 pandas 中执行其他常见任务:

Pandas:如何找到两列之间的差异
Pandas:如何找到两条线之间的差异
Pandas:如何减去两列

添加评论

您的电子邮箱地址不会被公开。 必填项已用*标注