일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 넘파이
- 배열나누기
- npy
- ndarray
- buit-in exception
- 파일저장하기
- Revising the Select Query I
- 배열추가
- 표본추출
- Revising the Select Query II
- 배열연산
- 배열분리하기
- Python
- 파이썬
- 벡터연산
- 넘파이장점
- 랜덤샘플링
- 논리배열
- numpy
- 배열자르기
- CONCATENATE
- 배열쪼개기
- fancyindexing
- 해커랭크
- 배열붙이기
- SQL
- 배열형태변경
- concat
- SQL문제
- reshape
- Today
- Total
목록reshape (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, ..
배열 형태 변경하기 (Reshape)import numpy as np배열.reshape(tup)사이즈가 동일한 형태로 reshape 해야한다.array = np.array(4) print( array ) print( array.size ) print( array.reshape(2,2) )4 1 --------------------------------------------------------------------------- ValueError Traceback (most recent call last) in 2 print( array ) 3 print( array.size ) ----> 4 print( array.reshape(2,2) ) ValueError: cannot reshape array o..