NumPy - Aggregation Functions
Given the array:
What is the output of
arr = np.array([[1, 2], [3, 4], [5, 6]])
What is the output of
np.sum(arr, axis=0)?arr = np.array([[1, 2], [3, 4], [5, 6]])
np.sum(arr, axis=0)?15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions