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