Basic Statistics on Numpy Arrays
Dive into the basic statistics on Numpy arrays and their functions.
We'll cover the following...
Basic statistics
np.mean
It computes the arithmetic mean along the specified axis of the numpy array. It takes in an axis
parameter.
-
If the axis is not specified, it returns the mean of the flattened version of the array. ...