File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
224
224
-i " pandas.api.extensions.ExtensionArray.insert PR07,RT03,SA01" \
225
225
-i " pandas.api.extensions.ExtensionArray.interpolate PR01,SA01" \
226
226
-i " pandas.api.extensions.ExtensionArray.isin PR07,RT03,SA01" \
227
- -i " pandas.api.extensions.ExtensionArray.ndim SA01" \
228
227
-i " pandas.api.extensions.ExtensionArray.ravel RT03,SA01" \
229
228
-i " pandas.api.extensions.ExtensionArray.take RT03" \
230
229
-i " pandas.api.extensions.ExtensionArray.tolist RT03,SA01" \
Original file line number Diff line number Diff line change @@ -649,6 +649,11 @@ def ndim(self) -> int:
649
649
"""
650
650
Extension Arrays are only allowed to be 1-dimensional.
651
651
652
+ See Also
653
+ --------
654
+ ExtensionArray.shape: Return a tuple of the array dimensions.
655
+ ExtensionArray.size: The number of elements in the array.
656
+
652
657
Examples
653
658
--------
654
659
>>> arr = pd.array([1, 2, 3])
@@ -664,8 +669,8 @@ def nbytes(self) -> int:
664
669
665
670
See Also
666
671
--------
667
- ExtensionArray.size: The number of elements in the array.
668
672
ExtensionArray.shape: Return a tuple of the array dimensions.
673
+ ExtensionArray.size: The number of elements in the array.
669
674
670
675
Examples
671
676
--------
You can’t perform that action at this time.
0 commit comments