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

पायथन पांडा - dtypes में डाले गए मानों के साथ एक इंडेक्स बनाएं

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

import pandas as pd

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

index = pd.Index([50.4, 10.2, 70.5, 110.5, 90.8, 50.6])

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

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

डेटाटाइप को int64 में बदलें -

index.astype('int64')

उदाहरण

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

import pandas as pd

# Creating Pandas index
index = pd.Index([50.4, 10.2, 70.5, 110.5, 90.8, 50.6])

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

# convert datatype to int64
print("\nIndex object after converting type...\n",index.astype('int64'))

आउटपुट

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

Pandas Index...
Float64Index([50.4, 10.2, 70.5, 110.5, 90.8, 50.6], dtype='float64')

Number of elements in the index...
6

The dtype object...
float64

Index object after converting type...
Int64Index([50, 10, 70, 110, 90, 50], dtype='int64')

  1. पायथन पांडा - सूचकांक में अद्वितीय मान लौटाएं

    अनुक्रमणिका में अद्वितीय मान लौटाने के लिए, index.unique() . का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा इंडेक्स बनाना - index = pd.Index([10, 50, 70, 10, 90, 50, 10, 30]) पांडा सूचकांक प्रदर्शित करें - print("Pandas Index...\n",i

  1. पायथन पंडों - मास्क के साथ निर्धारित मूल्यों का एक नया सूचकांक लौटाएं

    मास्क के साथ सेट किए गए मानों की एक नई अनुक्रमणिका वापस करने के लिए, index.putmask() का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा इंडेक्स बनाना - index = pd.Index([5, 65, 10, 17, 75, 40]) पांडा सूचकांक प्रदर्शित करें - print("Pandas Ind

  1. सीबॉर्न के साथ एक प्वाइंट प्लॉट बनाएं - पायथन पांडस

    Seaborn.pointplot() का उपयोग पॉइंट प्लॉट बनाने के लिए किया जाता है। मान लें कि CSV फ़ाइल के रूप में हमारा डेटासेट निम्नलिखित है - Cricketers.csv सबसे पहले, आवश्यक 3 पुस्तकालयों को आयात करें - import seaborn as sb import pandas as pd import matplotlib.pyplot as plt CSV फ़ाइल से पंडों के डेटाफ़्रेम