美文网首页
九、pandas的索引index

九、pandas的索引index

作者: minningl | 来源:发表于2022-08-27 22:20 被阅读0次

一、创建数据

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