convert string array to float array python code example
Example 1: convert all values in array into float
import numpy as np
x = np.array(['1.1', '2.2', '3.3'])
y = x.astype(np.float)
Example 2: python string list to float
[float(i) for i in lst]