मूल अनुक्रमणिका और नाम दोनों के साथ एक श्रृंखला बनाने के लिए, index.to_series() का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा इंडेक्स बनाना:
index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'],name ='Products')
अनुक्रमणिका को श्रृंखला में बदलें -
print("\nIndex to series...\n",index.to_series()) उदाहरण
निम्नलिखित कोड है -
import pandas as pd
# Creating Pandas index
index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'],name ='Products')
# 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 index to series
print("\nIndex to series...\n",index.to_series()) आउटपुट
यह निम्नलिखित आउटपुट देगा -
Pandas Index... Index(['Electronics', 'Accessories', 'Decor', 'Books', 'Toys'], dtype='object', name='Products') Number of elements in the index... 5 The dtype object... object Index to series... Products Electronics Electronics Accessories Accessories Decor Decor Books Books Toys Toys Name: Products, dtype: object