Skip to content

Commit e92d816

Browse files
authored
removed trailing whitespace
1 parent d5b38a9 commit e92d816

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/reshape/pivot.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ def crosstab(index, columns, values=None, rownames=None, colnames=None,
429429
430430
>>> foo = pd.Categorical(['a', 'b'], categories=['a', 'b', 'c'])
431431
>>> bar = pd.Categorical(['d', 'e'], categories=['d', 'e', 'f'])
432-
>>> crosstab(foo, bar) # 'c' and 'f' are not represented in the data,
432+
>>> crosstab(foo, bar) # 'c' and 'f' are not represented in the data,
433433
# and will not be shown in the output because
434434
# dropna is True by default. Set 'dropna=False'
435435
# to preserve categories with no data
@@ -440,7 +440,7 @@ def crosstab(index, columns, values=None, rownames=None, colnames=None,
440440
b 0 1
441441
442442
>>> crosstab(foo, bar, dropna=False) # 'c' and 'f' are not represented
443-
# in the data, but they still will be counted
443+
# in the data, but they still will be counted
444444
# and shown in the output
445445
... # doctest: +SKIP
446446
col_0 d e f

0 commit comments

Comments
 (0)