Difference between loc() and iloc() in Pandas DataFrame

Sk Akib Jabed
1 min readJul 19, 2021

--

Difference between loc() and iloc() in Pandas DataFrame

Pandas library of python is very useful for the manipulation of mathematical data and is widely used in the field of machine learning. It comprises many methods for its proper functioning. and are one of those methods. These are used in slicing data from the Pandas DataFrame. They help in the convenient selection of data from the DataFrame. They are used in filtering the data according to some conditions. The working of both of these methods is explained in the sample dataset of cars.

iloc() : iloc() is an indexed-based selecting method which means that we have to pass integer index in the method to select a specific row/column. This method does not include the last element of the range passed in it unlike loc(). iloc() does not accept the boolean data unlike loc().

Originally published at https://comingfly.blogspot.com.

--

--

No responses yet