Skip to content

Commit afea99f

Browse files
authored
fixed line length issue for comment
1 parent 21dd9d5 commit afea99f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/core/reshape/pivot.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,8 +429,9 @@ 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, dropna=False) # 'c' and 'f' are not represented in the data,
433-
... # but they still will be counted in the output
432+
>>> crosstab(foo, bar, dropna=False) # 'c' and 'f' are not represented
433+
# in the data, but they still will be counted in
434+
# the output
434435
... # doctest: +SKIP
435436
col_0 d e f
436437
row_0

0 commit comments

Comments
 (0)