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

पायथन पांडा - अंतर्निहित डेटा की dtype वस्तु लौटाएं

अंतर्निहित डेटा के dtype ऑब्जेक्ट को वापस करने के लिए, index.dtype . का उपयोग करें पंडों में संपत्ति।

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

import pandas as pd

अनुक्रमणिका बनाना -

index = pd.Index(['Car','Bike', 'Shop','Car','Airplace', 'Truck'])

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

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

डेटा का प्रकार लौटाएं -

print("\nThe dtype object...\n",index.dtype)

उदाहरण

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

import pandas as pd

# Creating the index
index = pd.Index(['Car','Bike', 'Shop','Car','Airplace', 'Truck'])

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

# Return an array representing the data in the Index
print("\nArray...\n",index.values)

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

# Return a tuple of the shape of the underlying data
print("\nA tuple of the shape of underlying data...\n",index.shape)

आउटपुट

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

Pandas Index...
Index(['Car', 'Bike', 'Shop', 'Car', 'Airplace', 'Truck'], dtype='object')

Array...
['Car' 'Bike' 'Shop' 'Car' 'Airplace' 'Truck']

The dtype object...
object

A tuple of the shape of underlying data...
(6,)

  1. पायथन पांडा - Timedelta ऑब्जेक्ट का अधिकतम मान लौटाएं

    Timedelta ऑब्जेक्ट का अधिकतम मान लौटाने के लिए, timedelta.max संपत्ति। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd Timedelta ऑब्जेक्ट बनाएं timedelta = pd.Timedelta('5 days 1 min 45 s 40 ns') अधिकतम मान लौटाएं timedelta.max उदाहरण निम्नलिखित कोड है import pandas as

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

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

  1. पायथन - जांचें कि क्या पंडों के सूचकांक में स्पष्ट डेटा है

    यह जांचने के लिए कि क्या पंडों के सूचकांक में स्पष्ट डेटा है, index.is_categorical() का उपयोग करें। पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd श्रेणी . के रूप में सेट प्रकार के साथ पांडा अनुक्रमणिका बनाना astype() . का उपयोग करके विधि - index = pd.Index(["