bigframes.pandas.Index.shape#

property Index.shape: Tuple[int]#

Return a tuple of the shape of the underlying data.

Examples:

>>> idx = bpd.Index([1, 2, 3])
>>> idx
Index([1, 2, 3], dtype='Int64')
>>> idx.shape
(3,)
Returns:

A Tuple of integers representing the shape.

Return type:

Tuple[int]