Skip to content

Instantly share code, notes, and snippets.

@kvnkho
Created May 25, 2022 04:39
Show Gist options
  • Select an option

  • Save kvnkho/bbd64d2fac382e79e60c31a0149e0404 to your computer and use it in GitHub Desktop.

Select an option

Save kvnkho/bbd64d2fac382e79e60c31a0149e0404 to your computer and use it in GitHub Desktop.
# case 1
df.head(10)[["c","d"]]
# case 2
df.tail(10)[["c","d"]]
# case 3
df.iloc[:10, [2,3]]
# case 4
df.iloc[-10:, [2,3]]
# case 5
df.iloc[499995:500005, [2,3]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment