감동, 마음이 움직이는 것
[python] mean and std 본문
https://docs.scipy.org/doc/numpy/reference/generated/numpy.std.html
import numpy as np
arr = np.zeors(3)
arr [1] = 2
arr
>>> (0, 2, 0)
np.mean(arr)
>>> 0.66666666666666663
np.std(arr)
>>> 0.94280904158206336
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[python] numpy.histogra: binning 해서 CDF또는 PDF찍기 (0) | 2017.08.23 |
---|---|
[python] dictionary sorting by values (0) | 2017.08.18 |
[python] list에 있는 str내용을 합쳐서 str으로 만들 때: "".join() (0) | 2017.08.16 |
[python] array with the initial value np.full() (0) | 2017.08.16 |
[Python] count file numbers in the folder (0) | 2017.08.16 |