slicing dataframe pandas code example
Example 1: slicing in pandas
# iloc[row slicing, column slicing]
surveys_df.iloc[0:3, 1:4]
Example 2: slicing in pandas
# Select rows 0, 1, 2 (row 3 is not selected)
surveys_df[0:3]
Example 3: get column pandas
column = df["column_name"]
Example 4: pandas df by row index
indices = [133, 22, 19, 203, 14, 1]
df_by_indices = df.iloc[indices, :]
Example 5: python slice Dataframe
2 9.00
3 9.00
4 8.97
Name: Gage Height [ft], dtype: float64