bigframes.pandas.DataFrame.iat#
- property DataFrame.iat: IatDataFrameIndexer#
Access a single value for a row/column pair by integer position.
Examples:
>>> df = bpd.DataFrame([[0, 2, 3], [0, 4, 1], [10, 20, 30]], ... columns=['A', 'B', 'C']) >>> df A B C 0 0 2 3 1 0 4 1 2 10 20 30 [3 rows x 3 columns]
Get value at specified row/column pair
>>> df.iat[1, 2] np.int64(1)
Get value within a series
>>> df.loc[0].iat[1] np.int64(2)
- Returns:
Indexers object.
- Return type:
bigframes.core.indexers.IatDataFrameIndexer