मूल अनुक्रमणिका से डेटाफ़्रेम बनाने के लिए लेकिन एक नई अनुक्रमणिका लागू करने के लिए, index.to_frame() का उपयोग करें। पैरामीटर सेट करें इंडेक्स करने के लिए गलत ।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा इंडेक्स बनाना -
index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'],name ='Products')
पांडा सूचकांक प्रदर्शित करें
print("Pandas Index...\n",index)
नई अनुक्रमणिका लागू करें और अनुक्रमणिका को DataFrame में बदलें। यहां, वास्तविक सूचकांक को दूसरे सूचकांक से बदल दिया जाता है -
print("\nIndex to DataFrame...\n",index.to_frame(index=False)) उदाहरण
निम्नलिखित कोड है -
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)
# Enforce new index and convert index to DataFrame
# Here, the actual index gets replaced by another index
print("\nIndex to DataFrame...\n",index.to_frame(index=False)) आउटपुट
यह निम्नलिखित आउटपुट देगा -
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 DataFrame... Products 0 Electronics 1 Accessories 2 Decor 3 Books 4 Toys