rows and column slicing pandas code example
Example 1: slicing in pandas
# Select rows 0, 1, 2 (row 3 is not selected)
surveys_df[0:3]
Example 2: how to get a row of a dataframe with subset columns in python
df.iloc[1:3, 5:7]
# Select rows 0, 1, 2 (row 3 is not selected)
surveys_df[0:3]
df.iloc[1:3, 5:7]