Answers for "convert numpy array elements to int"

1

python ndarray string array into int

y = y.astype(np.uint8)
Posted by: Guest on April-04-2020
1

np convert to int

>>> x = np.array([[1.0, 2.3], [1.3, 2.9]])
>>> x
array([[ 1. ,  2.3],
       [ 1.3,  2.9]])
>>> x.astype(int)
array([[1, 2],
       [1, 2]])
Posted by: Guest on October-17-2020

Code answers related to "convert numpy array elements to int"

Python Answers by Framework

Browse Popular Code Answers by Language