Slicing In Pandas Code Example

Snippet 1

  # Select rows 0, 1, 2 (row 3 is not selected)
surveys_df[0:3]
 

Snippet 2

  # iloc[row slicing, column slicing]
surveys_df.iloc[0:3, 1:4]
 

Copyright © Code Fetcher 2020

 

 

Leave a comment

Your email address will not be published. Required fields are marked *