0
How-to calculate mean, variance, standard deviation for each of a matrix in python,?
Numpy matrices in python
2 Answers
+ 5
numpy come with functions for that, like
np.mean(), np.var()...
You can specify the axis for which the metrics are calculated (see the docs)
+ 1
Lisa thank you