Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

numpy convert true false to 0 1

array([False, False,  True,  True], dtype=bool)
>>> 1*y                      # Method 1
array([0, 0, 1, 1])
>>> y.astype(int)            # Method 2
array([0, 0, 1, 1]) 
 
PREVIOUS NEXT
Tagged: #numpy #convert #true #false
ADD COMMENT
Topic
Name
6+1 =