Python Programming - Arrays - Discussion

Discussion Forum : Arrays - General Questions (Q.No. 75)
75.
How can you find the index of the minimum value in a NumPy array arr?
np.min_index(arr)
np.argmin(arr)
arr.find_min_index()
np.minimum_index(arr)
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.