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