标签: python python-3.x pandas
有没有一种方法可以选择带有DateTimeIndex的行而不引用日期,例如选择行索引2(通常的Python默认方式)而不是“ 1995-02-02”?
谢谢。
答案 0 :(得分:1)
是的,您可以使用.iloc(位置索引器):
df.iloc[2]
基本上,它根据从0到len(df)的实际位置编制索引,也可以切片:
0
len(df)
df.iloc[2:5]
它也适用于列(再次按位置):
df.iloc[:, 0] # All rows, first column df.iloc[0:2, 0:2] # First 2 rows, first 2 columns