I have a this multidimension array like this:
array([['120', '29.9475077984', '1'],
['125', '31.3887667742', '1'],
['125', '32.3881706091', '1'],
['125', '34.4894481007', '1'],
['126', '36.1494551046', '1'],
['127', '39.3121447948', '1'],
['128', '43.8203811171', '1'],
['128', '49.3179066095', '1'],
['128', '53.4929489926', '1'],
['128', '55.1837748899', '1'],
['130', '55.9167038553', '1'],
['130', '56.2727376481', '1'],
['130', '57.480058071', '1'],
['130', '60.3922465138', '1'],
['130', '61.2506277637', '1'],
['130', '60.5279054759', '1'],
['143', '62.139526711', '1'],
['143', '65.4147315349', '1'],
['143', '72.3278873965', '1'],
and all the values are string as you see. I need to convert them in float values, there's a way to do it? I've found a solution to convert a single string but it doesn't work for the array.
astype(float)on it.numpytag.