Skip to content

Commit 6c99a1b

Browse files
committed
rectified preprocess method array conversion missing
1 parent 7f22bb4 commit 6c99a1b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/tools/tile.py

+3
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,9 @@ def _preprocess_for_cut(x):
332332
series_index = x.index
333333
if name is None:
334334
name = x.name
335+
336+
x = np.asarray(x)
337+
335338
return x_is_series, series_index, name, x
336339

337340

0 commit comments

Comments
 (0)