• pandas
  • indexing

The 101 of indexing with Pandas. There are many ways of selecting rows and columns with Pandas dataframes. One common way is using label based indexing, which is either done with index labels, or boolean masks. Another way is using positional based indexing, which is purely based on the position or rows or columns in the dataframe.