statisticss
Title
Question
what is the difference between np.sum(L,1) and np.sum(L,0) ? what is the concept behind this?
also, what is meant by np.mean(:,1)?
Python-3.4.3 Statistics 12-13 min 0-10 sec
Answers:
Please see the documentation for the functions sum and mean
<a href="https://numpy.org/doc/stable/reference/generated/numpy.sum.html">https://numpy.org/doc/stable/reference/generated/numpy.sum.html</a>
<a href="https://numpy.org/doc/stable/reference/generated/numpy.mean.html">https://numpy.org/doc/stable/reference/generated/numpy.mean.html</a>
Login to add comment