स्तंभ मानों की गणना करने के लिए, गणना () विधि का उपयोग करें। सबसे पहले, आवश्यक पंडों की लाइब्रेरी आयात करें -
import pandas as pd
दो कॉलम के साथ एक डेटाफ़्रेम बनाएं -
dataFrame1 = pd.DataFrame( { "Car": ['BMW', 'Lexus', 'Audi', 'Tesla', 'Bentley', 'Jaguar'], "Units": [100, 150, 110, 80, 110, 90] } )
गिनती() फ़ंक्शन का उपयोग करके "इकाइयों" कॉलम मानों की गणना ढूँढना -
print"Count of values of Units column from DataFrame1 = ",dataFrame1['Units'].count()
इसी तरह, हमने 2 nd . से गिनती की गणना की है डेटाफ़्रेम।
उदाहरण
पूरा कोड निम्नलिखित है -
import pandas as pd # Create DataFrame1 dataFrame1 = pd.DataFrame( { "Car": ['BMW', 'Lexus', 'Audi', 'Tesla', 'Bentley', 'Jaguar'], "Units": [100, 150, 110, 80, 110, 90] } ) print"DataFrame1 ...\n",dataFrame1 # Finding count of values of a specific column print"Count of values of Units column from DataFrame1 = ",dataFrame1['Units'].count() # Create DataFrame2 dataFrame2 = pd.DataFrame( { "Product": ['TV', 'PenDrive', 'HeadPhone', 'EarPhone', 'HDD'], "Price": [8000, 500, 3000, 1500, 3000] } ) print"\nDataFrame2 ...\n",dataFrame2 # Finding count of values of all the column print"\nCount of column values from DataFrame2 = \n",dataFrame2.count()
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
DataFrame1 ... Car Units 0 BMW 100 1 Lexus 150 2 Audi 110 3 Tesla 80 4 Bentley 110 5 Jaguar 90 Count of values of Units column from DataFrame1 = 6 DataFrame2 ... Price Product 0 8000 TV 1 500 PenDrive 2 3000 HeadPhone 3 1500 EarPhone 4 3000 HDD Count of column values from DataFrame2 = Price 5 Product 5 dtype: int64