Python Programming - Arrays - Discussion

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

Post your comments here:

Your comments will be displayed after verification.