Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

पायथन पांडा - सूचकांक नाम बदलें

अनुक्रमणिका का नाम बदलने के लिए, index.rename() . का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -

import pandas as pd

पांडा इंडेक्स बनाना -

index = pd.Index(['Car','Bike','Airplane', 'Ship','Truck','Suburban'], name ='Transport')

पांडा सूचकांक प्रदर्शित करें -

print("Pandas Index...\n",index)

अनुक्रमणिका का नाम बदलें -

print("\nRename the index...\n",index.rename('Mode_of_Transport'))

उदाहरण

निम्नलिखित कोड है -

import pandas as pd

# Creating Pandas index
index = pd.Index(['Car','Bike','Airplane', 'Ship','Truck','Suburban'], name ='Transport')

# Display the Pandas index
print("Pandas Index...\n",index)

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# Return the dtype of the data
print("\nThe dtype object...\n",index.dtype)

# Rename the index
print("\nRename the index...\n",index.rename('Mode_of_Transport'))

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

Pandas Index...
Index(['Car', 'Bike', 'Airplane', 'Ship', 'Truck', 'Suburban'], dtype='object', name='Transport')

Number of elements in the index...
6

The dtype object...
object

Rename the index...
Index(['Car', 'Bike', 'Airplane', 'Ship', 'Truck', 'Suburban'], dtype='object', name='Mode_of_Transport')

  1. कैसे अजगर पंडों में स्तंभ नाम से स्तंभ अनुक्रमणिका प्राप्त करने के लिए?

    पायथन पांडा में कॉलम नाम से कॉलम इंडेक्स प्राप्त करने के लिए, हम get_loc() . का उपयोग कर सकते हैं विधि। कदम - एक द्वि-आयामी, आकार-परिवर्तनीय, संभावित रूप से विषम सारणीबद्ध डेटा बनाएं, df । इनपुट डेटाफ़्रेम प्रिंट करें, df । df.columns . का उपयोग करके DataFrame के कॉलम ढूंढें । चरण 3 से कॉलम प्रिंट

  1. पायथन पांडा - कॉलम नाम से सबसेट डेटाफ़्रेम

    कॉलम नाम से DataFrame का सबसेट बनाने के लिए वर्गाकार कोष्ठक का उपयोग करें। वर्गाकार कोष्ठक (इंडेक्सिंग ऑपरेटर) और इस तरह के विशिष्ट कॉलम नाम के साथ DataFrame का उपयोग करें - dataFrame[‘column_name’] सबसे पहले, आवश्यक पुस्तकालय को उपनाम के साथ आयात करें - import pandas as pd उत्पाद रिकॉर

  1. पायथन में पांडस डेटाफ्रेम में एक कॉलम में अपरकेस लागू करें

    इस ट्यूटोरियल में, हम यह देखने जा रहे हैं कि DataFrame में नामों का एक कॉलम अपरकेस में कैसे बनाया जाता है। आइए अपने लक्ष्य को प्राप्त करने के विभिन्न तरीकों को देखें। उदाहरण हम अपर () . का उपयोग करके DataFrame को अपरकेस बनाकर एक कॉलम असाइन कर सकते हैं विधि। आइए कोड देखें। # importing the pandas pa