Python的pandas 数组如何得到索引值,如图,我要得到ohio 的索引值,应该怎样做?
b['state'].index("ohio")返回TypeError:'Int64Index'objectisnotcallable的错误。该怎样获得索引值呢?...
b['state'].index("ohio")
返回TypeError: 'Int64Index' object is not callable的错误。
该怎样获得索引值呢? 展开
返回TypeError: 'Int64Index' object is not callable的错误。
该怎样获得索引值呢? 展开
5个回答
展开全部
可以将pandas 的dataframe数据类型先转换为numpy的矩阵。然后用np.argwhere去获取特定值的索引
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
In [36]: list(df['state']).index('ohio')
Out[36]: 0
In [37]: list(df['state']).index('nevada')
Out[37]: 1
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
b[b.['state']=='ohio'].index
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询