Skip to content

Instantly share code, notes, and snippets.

@Bookoff
Created February 20, 2015 01:13
Show Gist options
  • Save Bookoff/6464b379e7b925ef2529 to your computer and use it in GitHub Desktop.
Save Bookoff/6464b379e7b925ef2529 to your computer and use it in GitHub Desktop.
Slice data
print df.ix[10:20, 0:3]
# ВЫВОД
# Alpha Beta Gamma
# 10 981 1311 2560
# 11 27366 15093 3039
# 12 1100 1701 2382
# 13 7212 11001 1088
# 14 1048 1427 2847
# 15 25679 15661 2942
# 16 1055 2191 2119
# 17 5437 6461 734
# 18 1029 1183 2302
# 19 23710 12222 2598
# 20 1091 2343 2654
#
# [11 rows x 3 columns]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment