modin.pandas.Series.shape¶
- property Series.shape: tuple[int][source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/.tox/docs/lib/python3.9/site-packages/modin/pandas/series.py#L2311-L2316)¶
Return a tuple of the shape of the underlying data.
Examples
>>> s = pd.Series([1, 2, 3]) >>> s.shape (3,)