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

पायथन पांडस श्रेणीबद्ध सूचकांक - इस श्रेणीबद्ध के श्रेणी कोड प्राप्त करें

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

import pandas as pd

CategoricalIndex केवल सीमित, और आमतौर पर निश्चित, संभावित मानों (श्रेणियों) की संख्या ले सकता है। "श्रेणियों" पैरामीटर का उपयोग करके श्रेणीबद्ध के लिए श्रेणियां सेट करें। "आदेशित" पैरामीटर का उपयोग करके श्रेणीबद्ध के रूप में आदेश दिया गया है। कोड पूर्णांकों की एक सरणी है जो श्रेणियों के सरणी में वास्तविक मानों की स्थिति है -

catIndex = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"])

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

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

श्रेणी कोड प्राप्त करें -

print("\nCategory codes from CategoricalIndex...\n",catIndex.codes)

उदाहरण

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

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
# Codes are an array of integers which are the positions of the actual values in the categories array.
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)

# Get the category codes
print("\nCategory codes from CategoricalIndex...\n",catIndex.codes)

आउटपुट

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

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')

Category codes from CategoricalIndex...
[0 1 2 3 0 1 2 3]

  1. पायथन पांडा - अवधि के वर्ष घटक का महीना प्राप्त करें

    अवधि के वर्ष घटक का माह प्राप्त करने के लिए, अवधि.माह . का उपयोग करें संपत्ति। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा। अवधि समय की अवधि का प्रतिनिधित्व करती है। दो अवधि वस्तुएँ बनाना period1 = pd.Period("2020-09-23 05:55:30") period2 = pd.Period(freq="

  1. पायथन पांडा - अवधि के घंटे घटक का मिनट प्राप्त करें

    अवधि के घंटे घटक का मिनट प्राप्त करने के लिए, अवधि.मिनट . का उपयोग करें संपत्ति। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा। अवधि समय की अवधि का प्रतिनिधित्व करती है। दो अवधि वस्तुएँ बनाना period1 = pd.Period("2020-09-23 05:55:30") period2 = pd.Period(freq=&quo

  1. पायथन पांडा - अवधि के दिन के घटक का समय प्राप्त करें

    अवधि का दिन का समय घटक प्राप्त करने के लिए, अवधि.घंटा . का उपयोग करें संपत्ति। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा। अवधि समय की अवधि का प्रतिनिधित्व करती है। दो अवधि ऑब्जेक्ट बनाना - period1 = pd.Period("2020-09-23 05:55:30") period2 = pd.Period(freq=&q