I have the problem of splitting an array from my big data. So i have an array of data, which has the shape of (86594,12).
data=([1,2,3,4,5,6,7,8..,12],[13,14,15,16,17,18...24],...[86583,86584, ...86594])
I want to split it so that i can make a new arrays out from the data. If new array has the shape of (10,12) then I will have that array for into 8659. Please tell me how to do that in python? my expected result will be 8659 arrays with the shape of (10,12) so not in the whole data array of (86594,12)