I have a numpy table
<Table length=3>
a b
int64 int64
----- -----
1 3
2 5
4 7
And I would like to convert a row to a numpy array. But when I try, I end up with an array with no dimensions
In: np.array(mytable[0]).shape
Out: ()
and if I do
myrow = mytable[0]
myrow[0]
I get the error
IndexError: too many indices for array
Is there something like t[0].values I could do, that would return array([1, 3]) ?