If I have an array like this:
array([['10 2 1967 19.7 7.5'],
['10 3 1967 18.3 21.0'],
['10 4 1967 17.6 0.0']])
How do I remove the quotations and add a comma in between each value? Such that I get something like this:
array([[10, 2, 1967, 19.7, 7.5],
[10, 3, 1967, 18.3, 21.0],
[10, 4, 1967, 17.6, 0.0]])
intorfloat? With a numpy array you can't mix both.