Python Pandas - 检查 DataFrame 对象是否相等


要检查 DataFrame 对象是否相等,请使用 equals() 方法。首先,让我们创建具有两列的 DataFrame1 −

dataFrame1 = pd.DataFrame(
   {
      "Car": ['BMW', 'Lexus', 'Audi', 'Mustang', 'Bentley', 'Jaguar'],
      "Reg_Price": [7000, 1500, 5000, 8000, 9000, 6000]
   }
)

创建具有两列的 DataFrame2 

dataFrame2 = pd.DataFrame(
   {
      "Car": ['BMW', 'Lexus', 'Audi', 'Mustang', 'Bentley', 'Jaguar'],
      "Reg_Price": [7000, 1500, 5000, 8000, 9000, 6000]

   }
)

要检查 DataFrame 对象是否相等,请使用 equals() 方法

dataFrame1.equals(dataFrame2)

示例

代码如下

import pandas as pd

# Create DataFrame1
dataFrame1 = pd.DataFrame(
   {
      "Car": ['BMW', 'Lexus', 'Audi', 'Mustang', 'Bentley', 'Jaguar'],
      "Reg_Price": [7000, 1500, 5000, 8000, 9000, 6000]
   }
)

print"DataFrame1 ...\n",dataFrame1

# Create DataFrame2
dataFrame2 = pd.DataFrame(
   {
      "Car": ['BMW', 'Lexus', 'Audi', 'Mustang', 'Bentley', 'Jaguar'],
      "Reg_Price": [7000, 1500, 5000, 8000, 9000, 6000]

   }
)

print"\nDataFrame2 ...\n",dataFrame2

# check for equality
print"\nAre both the DataFrame objects equal? ",dataFrame1.equals(dataFrame2)

输出

这将产生以下输出

DataFrame1 ...
       Car   Reg_Price
0      BMW        7000
1    Lexus        1500
2     Audi        5000
3  Mustang        8000
4  Bentley        9000
5   Jaguar        6000

DataFrame2 ...
       Car   Reg_Price
0      BMW        7000
1    Lexus        1500
2     Audi        5000
3  Mustang        8000
4  Bentley        9000
5   Jaguar        6000

Are both the DataFrame objects equal? True

更新于:14-Sep-2021

175 次浏览

职业开端

完成课程获得认证

开始学习
广告