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
- 넘파이
- 배열쪼개기
- 벡터연산
- reshape
- 표본추출
- SQL
- Revising the Select Query I
- Python
- numpy
- 배열형태변경
- 배열나누기
- concat
- Revising the Select Query II
- 넘파이장점
- 해커랭크
- 랜덤샘플링
- npy
- 배열연산
- fancyindexing
- 배열추가
- 파이썬
- SQL문제
- 파일저장하기
- ndarray
- CONCATENATE
Archives
- Today
- Total
목록연습문제 (1)
기록하는 습관
[Numpy] (문제) #001. Reshape & Concat
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, ..
Python/Numpy
2023. 8. 7. 16:06