Compute sum of array elements
Compute mean of array elements
Compute standard deviation
Find maximum and minimum values
np.max(arr), np.min(arr)
Returns the largest and smallest element in the array.
Maximum value
np.max(arr)
Minimum value
np.min(arr)
Matrix dot product
Create array with evenly spaced values
Import NumPy library in Python