[PYTHON] recherche d'index numpy

Indice minimum, maximum

--Utilisez np.argmin (max)

import numpy as np
a = np.array([1,2,3,4,4])
np.argmin(a)

>>> 0
np.argmax(a)

>>> 3

S'ils se chevauchent, le plus petit est adopté.

Recherche conditionnelle

--Utilisez np.where (instruction conditionnelle)

import numpy as np
a = np.array([1,2,3,4,4])
print np.where(a>2)

>>>(array([2, 3, 4]),)

référence

http://oppython.hatenablog.com/entry/2016/05/31/205746

Recommended Posts

recherche d'index numpy
[Python] Recherche (NumPy) ABC165C
pratique numpy 1
Numpy [basique]
recherche django
numpy partie 1
Principes de base de NumPy
Mémorandum Numpy _ Matrice
astuces numpy
À propos de numpy
Axe NumPy
Utilisez Numpy
numpy partie 2
[Python numpy] Spécifiez dynamiquement l'index du tableau