按位置选择pandas列 [英] Selecting pandas column by location

查看:184
本文介绍了按位置选择pandas列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只是试图用整数来访问命名的pandas列。

I'm simply trying to access named pandas columns by an integer.

您可以使用 df.ix [3] 按位置选择行。

You can select a row by location using df.ix[3].

但如何按整数选择列?

我的数据帧:

df=pandas.DataFrame({'a':np.random.rand(5), 'b':np.random.rand(5)})


推荐答案

想到两种方法:

>>> df
          A         B         C         D
0  0.424634  1.716633  0.282734  2.086944
1 -1.325816  2.056277  2.583704 -0.776403
2  1.457809 -0.407279 -1.560583 -1.316246
3 -0.757134 -1.321025  1.325853 -2.513373
4  1.366180 -1.265185 -2.184617  0.881514
>>> df.ix[:, 2]
0    0.282734
1    2.583704
2   -1.560583
3    1.325853
4   -2.184617
Name: C
>>> df[df.columns[2]]
0    0.282734
1    2.583704
2   -1.560583
3    1.325853
4   -2.184617
Name: C

这篇关于按位置选择pandas列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆