diff --git a/pandas/core/arrays/base.py b/pandas/core/arrays/base.py index 15448148f0c0c..1b9924193483e 100644 --- a/pandas/core/arrays/base.py +++ b/pandas/core/arrays/base.py @@ -1707,6 +1707,13 @@ def transpose(self, *axes: int) -> ExtensionArray: Returns ------- ExtensionArray + + Examples + -------- + >>> pd.array([1, 2, 3]).transpose() + + [1, 2, 3] + Length: 3, dtype: Int64 """ return self[:]