Skip to content

Commit 5cb5b3b

Browse files
committed
fixing doctest: the order of 1,4,2 depends on hash and is not unique
1 parent 948d958 commit 5cb5b3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1200,9 +1200,9 @@ def value_counts(
12001200
>>> s = pd.Series([3, 1, 2, 3, 4, np.nan])
12011201
>>> s.value_counts(normalize=True)
12021202
3.0 0.4
1203+
1.0 0.2
12031204
4.0 0.2
12041205
2.0 0.2
1205-
1.0 0.2
12061206
dtype: float64
12071207
12081208
**bins**

0 commit comments

Comments
 (0)