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
- SQL
- 배열추가
- 해커랭크
- 논리배열
- Revising the Select Query I
- 넘파이장점
- 배열자르기
- 배열분리하기
- 배열연산
- 파일저장하기
- ndarray
- npy
- SQL문제
- 파이썬
- 배열나누기
- 표본추출
- fancyindexing
- 배열형태변경
- 랜덤샘플링
- 벡터연산
- CONCATENATE
- 배열붙이기
- Python
- concat
- 배열쪼개기
- Revising the Select Query II
- 넘파이
- buit-in exception
- numpy
- reshape
Archives
- Today
- Total
목록배열추가 (1)
기록하는 습관
[Numpy] 005. 배열 붙이기 (Concatenate)
배열 붙이기 (Concatenate) import numpy as np np.concatenate() Docstring: concatenate((a1, a2, ...), axis=0, out=None, dtype=None, casting="same_kind") Join a sequence of arrays along an existing axis. 가장 간단해 보이는 concat 함수이지만 차원과 shape을 신경써서 써야 한다. a = np.array([1,2,3]) b = np.concatenate((a,a), axis=0) print( a ) print( "shape :", a.shape, "ndim :", a.ndim ) print( b ) print( "shape :", b.shape, "ndi..
Python/Numpy
2023. 8. 7. 00:50