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

पायथन पांडस श्रेणीबद्ध सूचकांक - जांचें कि क्या श्रेणियों का एक क्रमबद्ध संबंध है

यह जांचने के लिए कि क्या श्रेणियों का एक क्रमबद्ध संबंध है, आदेशित . का उपयोग करें श्रेणीबद्ध सूचकांक की संपत्ति।

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

import pandas as pd

"श्रेणियों" पैरामीटर का उपयोग करके श्रेणीबद्ध के लिए श्रेणियां सेट करें। "आदेशित" पैरामीटर -

. का उपयोग करके श्रेणीबद्ध के रूप में आदेश दिया गया व्यवहार करें
catIndex = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"])

श्रेणीबद्ध सूचकांक प्रदर्शित करें -

print("Categorical Index...\n",catIndex)

श्रेणियां प्राप्त करें -

print("\nDisplayingCategories from CategoricalIndex...\n",catIndex.categories)

क्रमित संबंध के लिए श्रेणियों की जाँच करें -

print("\nDoes categories have ordered relationship...\n",catIndex.ordered)

उदाहरण

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

import pandas as pd

# CategoricalIndex can only take on a limited, and usually fixed, number of possible values
# Set the categories for the categorical using the "categories" parameter
# Treat the categorical as ordered using the "ordered" parameter
catIndex = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"])

# Display the Categorical Index
print("Categorical Index...\n",catIndex)

# Get the categories
print("\nDisplayingCategories from CategoricalIndex...\n",catIndex.categories)

# Check categories for ordered relationship
print("\nDoes categories have ordered relationship...\n",catIndex.ordered)

आउटपुट

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

Categorical Index...
CategoricalIndex(['p', 'q', 'r', 's', 'p', 'q', 'r', 's'], categories=['p', 'q', 'r', 's'], ordered=True, dtype='category')

DisplayingCategories from CategoricalIndex...
Index(['p', 'q', 'r', 's'], dtype='object')

Does categories have ordered relationship...
True

  1. पायथन - जांचें कि क्या पंडों का सूचकांक वस्तु का है dtype

    यह जाँचने के लिए कि पंडों का सूचकांक वस्तु प्रकार का है या नहीं, index.is_object() का उपयोग करें तरीका। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा इंडेक्स बनाना - index = pd.Index(["Electronics", 6, 10.5, "Accessories", 25.6, 30]) पांडा सूचकांक प्रद

  1. पायथन - जांचें कि क्या पंडों का सूचकांक एक अस्थायी प्रकार है

    यह जांचने के लिए कि क्या पंडों का सूचकांक एक अस्थायी प्रकार है, index.is_floating() का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा इंडेक्स बनाना - index = pd.Index([5.7, 6.8, 10.5, 20.4, 25.6, 30.8, 40.5, 50.2]) पांडा सूचकांक प्रदर्शित करें -

  1. पायथन पांडा - जांचें कि क्या दो इंडेक्स ऑब्जेक्ट्स में समान ऑब्जेक्ट विशेषताएँ और प्रकार हैं

    यह जांचने के लिए कि क्या दो इंडेक्स ऑब्जेक्ट्स में समान ऑब्जेक्ट विशेषताएँ और प्रकार हैं, index1.identical(index2) का उपयोग करें। विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा अनुक्रमणिका1 और अनुक्रमणिका2 बनाना - index1 = pd.Index([15, 25, 35, 45, 55]) index2 = pd.In