bigframes.pandas.MultiIndex.shape#

property MultiIndex.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]