slices dataframe pandas code example
Example 1: slicing in pandas
# iloc[row slicing, column slicing]
surveys_df.iloc[0:3, 1:4]
Example 2: python slice Dataframe
2 9.00
3 9.00
4 8.97
Name: Gage Height [ft], dtype: float64
# iloc[row slicing, column slicing]
surveys_df.iloc[0:3, 1:4]
2 9.00
3 9.00
4 8.97
Name: Gage Height [ft], dtype: float64