I need help in reshaping a column(Column 'Break') in csv file that looks like this
Axe Break
1 ww
2 ee
3 qq
4 xx
5 dd
5 gg
4 hh
6 tt
9 yy
1 uu
1 ii
2 oo
5 pp
4 mm
5 kk
5 ll
7 mm
2 bb
7 pp
0 zz
into a matrix form like this
[[ww,ee,qq,xx,dd,gg,hh,tt,yy,uu],
[ii,oo,pp,mm,kk,ll,mm,bb,pp,zz]]
using pandas.
I found a question that looks like what I want to ask here but I think that question a little different from what I want to do.
Reshaping the third column of a CSV file into a matrix
I have been going through the pandas tutorial but did not seem to find a way to do this.
Thank you for your help.