일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- buit-in exception
- CONCATENATE
- 파일저장하기
- 넘파이
- 배열자르기
- 랜덤샘플링
- 배열나누기
- SQL문제
- 파이썬
- npy
- numpy
- 논리배열
- ndarray
- 배열연산
- fancyindexing
- Revising the Select Query I
- reshape
- 해커랭크
- concat
- 배열붙이기
- Revising the Select Query II
- 배열쪼개기
- Python
- 배열추가
- 배열형태변경
- 배열분리하기
- SQL
- 벡터연산
- 표본추출
- 넘파이장점
- Today
- Total
목록CONCATENATE (2)
기록하는 습관
Exercise 위와 같이 배열을 합치려고 한다. 두 배열이 아래와 같이 주어졌다고 하자. import numpy as np x = np.array([[1,2], [3,4]]) y = np.array([5,6]) print(x) print( "shape :", x.shape, "ndim :", x.ndim ) print(y) print( "shape :", y.shape, "ndim :", y.ndim ) [[1 2] [3 4]] shape : (2, 2) ndim : 2 [5 6] shape : (2,) ndim : 1 만약 배열 y가 아래와 같다면 바로 concat을 적용할 수 있다. y_ = np.array([[5],[6]]) print( y_ ) print( "shape :", y_.shape, ..
배열 붙이기 (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..