일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 배열추가
- 배열분리하기
- ndarray
- SQL문제
- 배열연산
- concat
- 랜덤샘플링
- buit-in exception
- 배열형태변경
- 배열붙이기
- 배열쪼개기
- reshape
- 표본추출
- 넘파이
- Revising the Select Query II
- Revising the Select Query I
- CONCATENATE
- 파일저장하기
- 배열나누기
- 해커랭크
- 논리배열
- 파이썬
- npy
- numpy
- 넘파이장점
- fancyindexing
- 배열자르기
- Python
- 벡터연산
- SQL
- Today
- Total
목록표본추출 (2)
기록하는 습관
샘플링 함수들 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..
여러가지 ndarray 생성 함수들 import numpy as np np.arange() Docstring: arange([start,] stop[, step,], dtype=None, *, like=None) print( np.arange(0,10) ) print( np.arange(0,5, 0.5) ) # 리스트와 다른 부분 print( np.arange(0,10,3) ) print( np.arange(0,10,-2) ) print( np.arange(10,0,-2) ) [0 1 2 3 4 5 6 7 8 9] [0. 0.5 1. 1.5 2. 2.5 3. 3.5 4. 4.5] [0 3 6 9] [] [10 8 6 4 2] np.zeros(), np.ones() Docstring: zeros(shape..