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

पायथन पांडा - डुप्लिकेट इंडेक्स मान इंगित करें

डुप्लिकेट इंडेक्स मानों को इंगित करने के लिए, index.duplicated() विधि का उपयोग करें।

सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -

import pandas as pd

कुछ डुप्लीकेट के साथ अनुक्रमणिका बनाना -

index = pd.Index(['Car','Bike','Airplane','Ship','Airplane'])

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

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

डुप्लिकेट इंडेक्स मानों को सही के रूप में इंगित करें, शेष गलत। डिफ़ॉल्ट रूप से, यह डुप्लिकेट मान की पहली घटना को अचिह्नित रखता है -

print("\nIndicating duplicate values...\n", index.duplicated())

उदाहरण

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

import pandas as pd

# Creating the index with some duplicates
index = pd.Index(['Car','Bike','Airplane','Ship','Airplane'])

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

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

# get the dimensions of the data
print("\nGet the dimensions...\n",index.ndim)

# Indicate duplicate index values as True, rest False
# By default it keeps the first occurrence of the duplicate value unmarked
print("\nIndicating duplicate values...\n", index.duplicated())

आउटपुट

यह निम्नलिखित कोड उत्पन्न करेगा -

Pandas Index with duplicates...
Index(['Car', 'Bike', 'Airplane', 'Ship', 'Airplane'], dtype='object')

The dtype object...
object

Get the dimensions...
1

Indicating duplicate values...
[False False False False True]

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

    अनुक्रमणिका का नाम बदलने के लिए, index.rename() . का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा इंडेक्स बनाना - index = pd.Index(['Car','Bike','Airplane', 'Ship','Truck','Suburban'], name ='Tr

  1. पायथन - पांडस डेटाफ्रेम से डुप्लिकेट मान हटाएं

    पंडों के डेटाफ़्रेम से डुप्लिकेट मान निकालने के लिए, ड्रॉप_डुप्लिकेट () विधि का उपयोग करें। सबसे पहले, 3 कॉलम के साथ एक DataFrame बनाएं - dataFrame = pd.DataFrame({'Car': ['BMW', 'Mercedes', 'Lamborghini', 'BMW', 'Mercedes', 'Porsche'],'Pla

  1. पायथन पंडों में दो सूचकांक मूल्यों के बीच डेटाफ्रेम पंक्तियों का चयन करें

    हम दो इंडेक्स मानों के बीच पंक्तियों का चयन करने के लिए पंडों के डेटाफ़्रेम को स्लाइस कर सकते हैं। आइए एक उदाहरण लें और देखें कि यह कैसे किया जाता है। कदम एक द्वि-आयामी, आकार-परिवर्तनीय, संभावित रूप से विषम सारणीबद्ध डेटा बनाएं, df । इनपुट डेटाफ़्रेम प्रिंट करें, df । सूचकांक की निचली सीमा के लिए ए