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

पायथन पंडों - सूचकांक में सबसे छोटे मूल्य की अंतर स्थिति लौटाएं

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

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

import pandas as pd

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

index = pd.Index([15, 25, 55, 10, 100, 70, 35, 40, 55])

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

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

इंडेक्स में सबसे छोटे मान की इंट पोजीशन पाएं -

print("\nGet the int position of the smallest value in the Index...\n",index.argmin())

उदाहरण

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

import pandas as pd

# Creating the index
index = pd.Index([15, 25, 55, 10, 100, 70, 35, 40, 55])

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

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

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# The int position of the smallest value in the Index
print("\nGet the int position of the smallest value in the Index...\n",index.argmin())

आउटपुट

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

Pandas Index...
Int64Index([15, 25, 55, 10, 100, 70, 35, 40, 55], dtype='int64')

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

Number of elements in the index...
9

Get the int position of the smallest value in the Index...
3

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

    पांडा इंडेक्स का न्यूनतम मान वापस करने के लिए, index.min() . का उपयोग करें तरीका। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा इंडेक्स बनाना - index = pd.Index([10.5, 20.4, 40.5, 25.6, 5.7, 6.8, 30.8, 50.2]) पांडा सूचकांक प्रदर्शित करें - print("Pandas Index...\n&qu

  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. पायथन पांडा - एक विशिष्ट स्थान पर एक नया सूचकांक मान डालें

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