Suche…


Erstellen eines booleschen Arrays

Ein boolesches Array kann manuell erstellt werden, indem beim Erstellen des Arrays dtype=bool . Andere Werte als 0 , None , False oder leere Zeichenfolgen werden als wahr betrachtet.

import numpy as np

bool_arr = np.array([1, 0.5, 0, None, 'a', '', True, False], dtype=bool)
print(bool_arr)
# output: [ True  True False False  True False  True False]

Alternativ erstellt numpy automatisch ein boolesches Array, wenn Vergleiche zwischen Arrays und Skalaren oder Arrays derselben Form durchgeführt werden.

arr_1 = np.random.randn(3, 3)
arr_2 = np.random.randn(3, 3)

bool_arr = arr_1 < 0.5    
print(bool_arr.dtype)
# output: bool

bool_arr = arr_1 < arr_2
print(bool_arr.dtype)
# output: bool


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow