Numpy 기본 레퍼런스

http://docs.scipy.org/doc/numpy/reference/

Numpy object 인지 type check하기

type(a).__module__ == np.__name__ True

https://stackoverflow.com/questions/12569452/how-to-identify-numpy-types-in-python

잘 모르는 유용한 method

d = np.array([-5,-5,-5,-5, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3])print(np.percentile(a=d, q=[0, 22, 33, 66, 77, 100], interpolation='linear'))print(np.percentile(a=d, q=[0, 22, 33, 66, 77, 100], interpolation='midpoint'))

매틀랩 유저를 위한 Numpy 메뉴얼

http://mathesaurus.sourceforge.net/matlab-numpy.html