bigframes.pandas.DataFrame.shape# property DataFrame.shape: Tuple[int, int]# Return a tuple representing the dimensionality of the DataFrame. Examples: >>> df = bpd.DataFrame({'col1': [1, 2, 3], ... 'col2': [4, 5, 6]}) >>> df.shape (3, 2) Returns: Tuple of array dimensions. Return type: Tuple[int, int]