Skip to content

Commit c3d6a2b

Browse files
committed
added missing fill_na parameter
1 parent 25059ee commit c3d6a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/reshape/reshape.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def _unstack_multiple(data, clocs, fill_value=None):
360360
result = data
361361
for i in range(len(clocs)):
362362
val = clocs[i]
363-
result = result.unstack(val)
363+
result = result.unstack(val,fill_value)
364364
clocs = [v if i > v else v - 1 for v in clocs]
365365

366366
return result

0 commit comments

Comments
 (0)