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
- buit-in exception
- 파이썬
- CONCATENATE
- concat
- ndarray
- 논리배열
- 배열자르기
- fancyindexing
- 배열붙이기
- 배열추가
- 배열쪼개기
- 넘파이장점
- 벡터연산
- SQL
- numpy
- Revising the Select Query II
- 파일저장하기
- SQL문제
- 배열분리하기
- 넘파이
- Revising the Select Query I
- 해커랭크
- 랜덤샘플링
- 배열연산
- reshape
- 배열나누기
- 배열형태변경
- npy
- Python
- 표본추출
Archives
- Today
- Total
목록함수 (1)
기록하는 습관
[Numpy] 002. 여러가지 ndarray 생성 함수
여러가지 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..
Python/Numpy
2023. 8. 4. 16:42