I'm using pandas.Series and np.ndarray.
The code is like this
>>> t
array([[ 0., 0., 0.],
[ 0., 0., 0.],
[ 0., 0., 0.]])
>>> pandas.Series(t)
Exception: Data must be 1-dimensional
>>>
And I trie to convert it into 1-dimensional array:
>>> tt = t.reshape((1,-1))
>>> tt
array([[ 0., 0., 0., 0., 0., 0., 0., 0., 0.]])
tt is still multi-dimensional since there are double '['.
So how do I get a really convert ndarray into array?
After searching, it says they are the same. However in my situation, they are not working the same.