选择具有DateTimeIndex的行而不引用日期

时间:2018-11-23 01:52:35

标签: python python-3.x pandas

有没有一种方法可以选择带有DateTimeIndex的行而不引用日期,例如选择行索引2(通常的Python默认方式)而不是“ 1995-02-02”?

enter image description here

谢谢。

1 个答案:

答案 0 :(得分:1)

是的,您可以使用.iloc(位置索引器):

df.iloc[2]

基本上,它根据从0len(df)的实际位置编制索引,也可以切片:

df.iloc[2:5]

它也适用于列(再次按位置):

df.iloc[:, 0]  # All rows, first column
df.iloc[0:2, 0:2] # First 2 rows, first 2 columns