File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -334,7 +334,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
334
334
-i " pandas.api.extensions.ExtensionArray.nbytes SA01" \
335
335
-i " pandas.api.extensions.ExtensionArray.ndim SA01" \
336
336
-i " pandas.api.extensions.ExtensionArray.ravel RT03,SA01" \
337
- -i " pandas.api.extensions.ExtensionArray.shape SA01" \
338
337
-i " pandas.api.extensions.ExtensionArray.shift SA01" \
339
338
-i " pandas.api.extensions.ExtensionArray.take RT03" \
340
339
-i " pandas.api.extensions.ExtensionArray.tolist RT03,SA01" \
Original file line number Diff line number Diff line change @@ -610,6 +610,13 @@ def shape(self) -> Shape:
610
610
"""
611
611
Return a tuple of the array dimensions.
612
612
613
+ See Also
614
+ --------
615
+ numpy.ndarray.shape : Similar attribute which returns the shape of an array.
616
+ DataFrame.shape : Return a tuple representing the dimensionality of the
617
+ DataFrame.
618
+ Series.shape : Return a tuple representing the dimensionality of the Series.
619
+
613
620
Examples
614
621
--------
615
622
>>> arr = pd.array([1, 2, 3])
You can’t perform that action at this time.
0 commit comments