Answers for "convert string to float numpy"

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)
Posted by: Guest on March-06-2020
1

python to float

float(string)
Posted by: Guest on September-16-2021

Code answers related to "convert string to float numpy"

Python Answers by Framework

Browse Popular Code Answers by Language