Skip to content

Commit 63643a0

Browse files
committed
move to v1.3.0
1 parent 47d2593 commit 63643a0

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

doc/source/whatsnew/v1.3.0.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ Other enhancements
5757
- :meth:`.Styler.set_tooltips_class` and :meth:`.Styler.set_table_styles` amended to optionally allow certain css-string input arguments (:issue:`39564`)
5858
- :meth:`.Styler.apply` now more consistently accepts ndarray function returns, i.e. in all cases for ``axis`` is ``0, 1 or None``. (:issue:`39359`)
5959
- :meth:`Series.loc.__getitem__` and :meth:`Series.loc.__setitem__` with :class:`MultiIndex` now raising helpful error message when indexer has too many dimensions (:issue:`35349`)
60+
- Added :meth:`DataFrame.is_unique` method for finding columns with unique values (:issue:`37565`)
6061
- :meth:`pandas.read_stata` and :class:`StataReader` support reading data from compressed files.
6162

6263

pandas/core/frame.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5378,6 +5378,8 @@ def is_unique(
53785378
"""
53795379
Return boolean Series denoting which columns have unique values.
53805380
5381+
.. versionadded:: 1.3.0
5382+
53815383
Parameters
53825384
----------
53835385
subset : column label or sequence of labels, optional

0 commit comments

Comments
 (0)