Python Programming - Arrays - Discussion

Discussion Forum : Arrays - General Questions (Q.No. 53)
53.
How can you find the index of the minimum value in a NumPy array arr?
np.argmin(arr)
arr.index(min(arr))
np.minimum_index(arr)
arr.min_index()
Answer: Option
Explanation:
The np.argmin() function returns the index of the minimum value in the array.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.