# 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 참고해서 마저적기
'B.C > [1-Sprint2] 통계(Statistics)' 카테고리의 다른 글
[ section1 - 2 / 통계(Statistics) ] 7. ANOVA Test이란 (0) | 2021.09.20 |
---|---|
[ section1 - 2 / 통계(Statistics) ] 5. 표본 평균의 오차( Standard Error of the Sample Mean ) (0) | 2021.09.18 |
[ section1 - 2 / 통계(Statistics) ] 2. 통계적 가설 검정 (statistical hypothesis test) (0) | 2021.09.18 |
[ section1 - 2 / 통계(Statistics) ] 3. 샘플링 방법의 종류 (0) | 2021.09.18 |
[ section1 - 2 / 통계(Statistics) ] 1. 기술통계와 추리통계 개념정리 (0) | 2021.09.18 |