一、创建数据
df = pd.DataFrame(np.arange(12).reshape(3,4), columns=['A','B','C','D'])
image.png
二、设置索引列
df.set_index('A', inplace=True, drop=False)
image.png
三、使用索引列获取元素
df.loc[4]
df[df['A']==4]
image.png
df = pd.DataFrame(np.arange(12).reshape(3,4), columns=['A','B','C','D'])
image.png
df.set_index('A', inplace=True, drop=False)
image.png
df.loc[4]
df[df['A']==4]
image.png
本文标题:九、pandas的索引index
本文链接:https://www.haomeiwen.com/subject/wnxqnrtx.html
网友评论