slicing columns of a dataframe code example
Example 1: slicing in pandas
# iloc[row slicing, column slicing]
surveys_df.iloc[0:3, 1:4]
Example 2: pandas df by row index
indices = [133, 22, 19, 203, 14, 1]
df_by_indices = df.iloc[indices, :]
# iloc[row slicing, column slicing]
surveys_df.iloc[0:3, 1:4]
indices = [133, 22, 19, 203, 14, 1]
df_by_indices = df.iloc[indices, :]