bigframes.pandas.Series.keys#

Series.keys()Index[source]#

Return alias for index.

Examples:

>>>s=bpd.Series([1,2,3],index=[0,1,2])>>>s.keys()Index([0, 1, 2], dtype='Int64')
Returns:

Index of the Series.

Return type:

Index

On this page

This Page