From 487397477a8554ea25aef85b48deb0a241518df4 Mon Sep 17 00:00:00 2001 From: Vladimir Podolskiy Date: Wed, 3 Feb 2021 04:26:55 +0100 Subject: [PATCH] Fixed comment for pandas.unique (#39557) --- pandas/core/algorithms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandas/core/algorithms.py b/pandas/core/algorithms.py index 2b0d3f5aa8862..cdbef673643e8 100644 --- a/pandas/core/algorithms.py +++ b/pandas/core/algorithms.py @@ -324,7 +324,8 @@ def unique(values): Hash table-based unique. Uniques are returned in order of appearance. This does NOT sort. - Significantly faster than numpy.unique. Includes NA values. + Significantly faster than numpy.unique for long enough sequences. + Includes NA values. Parameters ----------