[ Web Proxy ]
URL:
Viewing: https://dataframes.bigquery.dev/reference/api/bigframes.pandas.DataFrame.axes.html [Back]  [Original]

bigframes.pandas.DataFrame.axes — bigframes documentation
Back to top
Search the docs ...:

bigframes.pandas.DataFrame.axes#

property DataFrame.axes: list#

Return a list representing the axes of the DataFrame.

It has the row axis labels and column axis labels as the only members. They are returned in that order.

Examples:

>>> df = bpd.DataFrame({'col1': [1, 2], 'col2': [3, 4]})
>>> df.axes[1:]
[Index(['col1', 'col2'], dtype='str')]

Web Proxy Viewer  |  New URL  |  Original Page