본문 바로가기

B.C/[1-Sprint2] 통계(Statistics)

[ section1 - 2 / 통계(Statistics) ] 4. NumPy 난수 생성 (무작위 추출/Random 모듈)

# np.random.rand() : 무작위 샘플 추출(난수 생성)을 위한 메서드

낮은 (포함)에서 높은 (제외) 까지 임의의 정수를 반환

NumPy 패키지의 random 모듈 (numpy.random)에 대해 소개합니다.

random 모듈의 다양한 함수를 사용해서 특정 범위, 개수, 형태를 갖는 난수 생성에 활용할 수 있습니다.

 

import numpy as np v = np.random.randint(0, 100, 20) pd.DataFrame(v).describe()

>>>

  • Population
  • Parameter
  • Statistic
  • Estimator
  • Standard Deviation
  • Standard Error

 

 

 

https://codetorial.net/numpy/random.html 참고해서 마저적기