Skip to content

Commit 5f36693

Browse files
authored
Update algorithms.py
1 parent bce5ab1 commit 5f36693

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ def value_counts_internal(
917917
# Handle normalization as usual
918918
result = result / counts.sum()
919919
elif normalize == "keep":
920-
# Add normlized values to counts.
920+
# Add normalized values to counts.
921921
result = result.astype(str) + "(" + (
922922
(result / counts.sum()).apply(lambda x: round(x, 6))
923923
.astype(str)

0 commit comments

Comments
 (0)