bigframes.pandas.Series.shape# property Series.shape: Tuple[int]# Return a tuple of the shape of the underlying data. Examples: >>> s = bpd.Series([1, 4, 9, 16]) >>> s.shape (4,) >>> s = bpd.Series(['Alice', 'Bob', pd.NA]) >>> s.shape (3,)