I'm trying to turn a csv file into arrays.testdata here
what I have in csv file is like this
11,10,8,12,13,11
0,1,0,2,3,0
5,15,13,11,18,18
I want to turn it into arrays as below,
[[[11],
[10],
[8],
[12],
[13],
[11]],
[[0],
[1],
[0],
[2],
[3],
[0]],
[[5],
[15],
[13],
[11],
[18],
[18]]]