modin.pandas.Series.shape¶
- property Series.shape[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.23.0/../../../../../opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/modin/pandas/series.py#L2218-L2223)¶
Return a tuple of the shape of the underlying data.
Examples
>>> s = pd.Series([1, 2, 3]) >>> s.shape (3,)