अनुक्रमणिका=गलत का प्रयोग करें अनुक्रमणिका को अनदेखा करना। आइए पहले आवश्यक पुस्तकालय आयात करें -
import pandas as pd
एक डेटाफ़्रेम बनाएँ -
dataFrame = pd.DataFrame([[10, 15], [20, 25], [30, 35]],index=['x', 'y', 'z'],columns=['a', 'b'])
loc का उपयोग करके लेबल पास करके पंक्तियों का चयन करें -
dataFrame.loc['x']
इंडेक्स के बिना डेटाफ़्रेम प्रदर्शित करें -
dataFrame.to_string(index=False)
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # Create DataFrame dataFrame = pd.DataFrame([[10, 15], [20, 25], [30, 35]],index=['x', 'y', 'z'],columns=['a', 'b']) # DataFrame print"Displaying DataFrame with index...\n",dataFrame # select rows with loc print"\nSelect rows by passing label..." print(dataFrame.loc['x']) # display DataFrame without index print"\nDisplaying DataFrame without Index...\n",dataFrame.to_string(index=False)
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Displaying DataFrame with index... a b x 10 15 y 20 25 z 30 35 Select rows by passing label... a 10 b 15 Name: x, dtype: int64 Displaying DataFrame without Index... a b 10 15 20 25 30 35