如何在dataframe ix之后访问下一行?

时间:2018-02-01 19:23:51

标签: python pandas dataframe

我正在尝试访问post_install do |installer_representation| installer_representation.pods_project.targets.each do |target| if target.name == "Pods-MyAppExtension-FBSDKCoreKit" target.build_configurations.each do |config| //I tried both these lines config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', 'AF_APP_EXTENSIONS=1'] config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO' end end end end 的数据框的下一行条目: 例如:

下一行index01

感谢

1 个答案:

答案 0 :(得分:3)

使用index.get_loc,请注意不推荐使用ix

df.iloc[df.index.get_loc(index01) + 1]

这假设index01是标签。如果这是位置,您当然可以使用df.iloc[index01 + 1]