我是一个 R 用户,我发现自己在转向 Python 时遇到了一些困难,尤其是在 Pandas 的索引功能方面。
Household_id 是我的第二列。我根据此列对数据框进行了排序并运行以下指令,返回各种结果(我希望是相同的)。这些表达方式一样吗?如果是这样,为什么我会看到不同的结果?
In [63]: ground_truth.columns
Out[63]: Index([Timestamp, household_id, ... (continues)
In [59]: ground_truth.ix[1107177,'household_id']
Out[59]: 2
In [60]: ground_truth.ix[1107177,1]
Out[60]: 2.0
In [61]: ground_truth.iloc[1107177,1]
Out[61]: 4.0
In [62]: ground_truth['household_id'][1107177]
Out[62]: 2
PS:不幸的是我无法发布数据(太大)。