Monday, October 6, 2025
HomeLanguagesPython | Pandas Dataframe.iat

Python | Pandas Dataframe.iat[ ]

Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric Python packages. Pandas is one of those packages and makes importing and analyzing data much easier.

Pandas iat[] method is used to return data in a dataframe at the passed location. The passed location is in the format [position in the row, position in the column]. This method works similarly to Pandas iloc[] but iat[] is used to return only a single value and hence works faster than it.

Syntax: Dataframe.iat[row, column]
Parameters: 
position: Position of element in column 
label: Position of element in row
Return type: Single element at passed position 
 

To download the data set used in the following example, click here.

In the following examples, the data frame used contains data of some NBA players. The image of data frame before any operations is attached below.

Example #1: 
In this example, A dataframe is created by passing URL of csv to Pandas .read_csv() method. After that 3 is passed as column position and 7 as the position in row and value at that position is returned using .iat[ ] method. 

Python3




# importing pandas module 
import pandas as pd
 
# reading csv file from url 
 
# creating column and row variables
column = 7
row = 3
     
# calling .iat[] method
output = data.iat[row, column]
 
# display
print(output)
 
# df display
data.head()


Output: 
As shown in the output image, the output can be compared and it can be seen that the Value of the 3rd element in the 7th column was returned. 

Note:  

  • Unlike, .iloc[ ], This method only returns single value. Hence, dataframe.at[3:6, 4:2] will return an error
  • Since this method only works for single values, it is faster than .iloc[] method

 

RELATED ARTICLES

Most Popular

Dominic
32337 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6707 POSTS0 COMMENTS
Nicole Veronica
11871 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6823 POSTS0 COMMENTS
Ted Musemwa
7089 POSTS0 COMMENTS
Thapelo Manthata
6779 POSTS0 COMMENTS
Umr Jansen
6779 POSTS0 COMMENTS