We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38e3516 commit 5334994Copy full SHA for 5334994
doc/source/whatsnew/v1.3.0.rst
@@ -96,7 +96,7 @@ As an example of this, given:
96
original = pd.Series(cat)
97
unique = original.unique()
98
99
-*pandas < 1.2.0*:
+*pandas < 1.3.0*:
100
101
.. code-block:: ipython
102
@@ -106,7 +106,7 @@ As an example of this, given:
106
In [2]: original.dtype == unique.dtype
107
False
108
109
-*pandas >= 1.2.0*
+*pandas >= 1.3.0*
110
111
.. ipython:: python
112
pandas/core/arrays/categorical.py
@@ -2129,7 +2129,7 @@ def unique(self):
2129
Return the ``Categorical`` which ``categories`` and ``codes`` are
2130
unique.
2131
2132
- .. versionchanged:: 1.2.0
+ .. versionchanged:: 1.3.0
2133
2134
Previously, unused categories were dropped from the new categories.
2135
0 commit comments