NumPy - Aggregation Functions
Find the error in this code snippet:
import numpy as np arr = np.array([1, 2, 3, 4]) std_dev = np.std(arr, axis=1) print(std_dev)
