It looks to me like a bug in pandas.Series.
a = pd.Series([1,2,3,4]) b = a.reshape(2,2) b
b has type Series but can not be displayed, the l
Just use this below code:
b=a.values.reshape(2,2)
I think it will help you. u can directly use only reshape() function.but it will give future warning