标签: pandas numpy scipy
我使用了scipy库中的agrrelextrema来找出局部最大值的索引。但是它给出了[array [2,7]作为输出。现在,当我在末尾添加[0]时,其值为[2,7]。我想了解它是如何做到的?
from scipy.signal import argrelextrema maxind=argrelextrema(arr,np.greater)[0] maximas=maxind maximas=[int(x) for x in maximas] print(maximas)