NumPy - Aggregation Functions
Identify the mistake in this code:
import numpy as np arr = np.array([1, 2, 3, 4, 5]) variance = np.var(arr, ddof=1) print(variance)
