Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 배열붙이기
- 파이썬
- 배열자르기
- Revising the Select Query I
- buit-in exception
- 배열연산
- ndarray
- 배열나누기
- 배열분리하기
- npy
- 논리배열
- CONCATENATE
- 벡터연산
- Python
- 배열추가
- 배열쪼개기
- 넘파이장점
- Revising the Select Query II
- SQL
- 랜덤샘플링
- fancyindexing
- concat
- 배열형태변경
- 표본추출
- 넘파이
- 해커랭크
- SQL문제
- 파일저장하기
- numpy
- reshape
Archives
- Today
- Total
목록랜덤샘플링 (1)
기록하는 습관
[Numpy] 010. 랜덤 표본 추출 (Random Sampling)
샘플링 함수들 import numpy as np np.random.uniform(하한, 상한, 형태) Docstring: uniform(low=0.0, high=1.0, size=None) Draw samples from a uniform distribution. Samples are uniformly distributed over the half-open interval [low, high) (includes low, but excludes high). In other words, any value within the given interval is equally likely to be drawn by uniform. print( np.random.uniform(0, 1, 5) ) print( np.r..
Python/Numpy
2023. 8. 10. 18:00