यह जाँचने के लिए कि क्या डेटाफ़्रेम ऑब्जेक्ट समान हैं, बराबर () विधि का उपयोग करें। सबसे पहले, दो कॉलम के साथ 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] } )
यह जांचने के लिए कि क्या डेटाफ़्रेम ऑब्जेक्ट बराबर हैं, बराबर () विधि का उपयोग करें
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