| [ Web Proxy ] |
| Viewing: https://dataframes.bigquery.dev/reference/api/bigframes.pandas.DataFrame.iterrows.html | [Back] [Original] |
Section Navigation
Iterate over DataFrame rows as (index, Series) pairs.
Examples:
>>> df = bpd.DataFrame({
... 'A': [1, 2, 3],
... 'B': [4, 5, 6],
... })
>>> index, row = next(df.iterrows())
>>> index
np.int64(0)
>>> row
A 1
B 4
Name: 0, dtype: object
A tuple where data contains row values as a Series
Iterable[Tuple]
Copyright 2019, Google.
Created using Sphinx 8.1.3.
Built with the PyData Sphinx Theme 0.19.0.
| Web Proxy Viewer | New URL | Original Page |