Python Programming - Arrays - Discussion

Discussion Forum : Arrays - General Questions (Q.No. 41)
41.
How do you find the median value of a NumPy array arr?
np.median(arr)
arr.median()
np.mean(arr)
arr.mean()
Answer: Option
Explanation:
The np.median() function calculates the median value of the array.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.