NumPy - Aggregation Functions
What is the output of this code?
import numpy as np arr = np.array([[2, 4], [6, 8]]) print(np.mean(arr, axis=0))
import numpy as np arr = np.array([[2, 4], [6, 8]]) print(np.mean(arr, axis=0))
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions