반응형
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
- Mac
- GIT
- Redshift
- array
- string
- Google Excel
- Github
- Excel
- PANDAS
- PySpark
- Kotlin
- Python
- SQL
- dataframe
- PostgreSQL
- c#
- list
- Apache
- Tkinter
- django
- math
- numpy
- hive
- 파이썬
- Java
- Google Spreadsheet
- matplotlib
- gas
- google apps script
Archives
- Today
- Total
달나라 노트
Python numpy : zeros (0으로 채워진 array 생성) 본문
728x90
반응형
numpy의 zeros method는 0으로만 채워진 array를 생성합니다.
아래 예시들을 봅시다.
import numpy as np
arr_test = np.zeros(shape=3)
print(arr_test)
-- Result
[0. 0. 0.]
zeros(3)의 의미는
3개의 0을 요소로서 가지는 1차원 array를 생성하라는 의미입니다.
이렇게 zeros는 기본적으로 1차원 array를 생성합니다.
import numpy as np
arr_test = np.zeros(shape=3, dtype=int)
print(arr_test)
-- Result
[0 0 0]
위 예시처럼 dtype 옵션을 이용해서 data type을 명시해줄 수 있습니다.
위 예시는 0의 data type을 모두 정수(int, integer)로 설정했기 때문에 소수점이 사라졌습니다.
import numpy as np
arr_test = np.zeros(shape=(2, 3))
print(arr_test)
-- Result
[[0. 0. 0.]
[0. 0. 0.]]
zeros method에 숫자가 아니라 tuple 형태의 값을 입력해주면 입력된 형태를 가지는 다차원 array를 생성해줍니다.
위 예시는 tuple의 길이가 2이므로 2차원 array가 생성되며
2개의 행, 3개의 열을 가진 array가 생성되었습니다.
import numpy as np
arr_test = np.zeros(shape=(2, 3, 5))
print(arr_test)
-- Result
[[[0. 0. 0. 0. 0.]
[0. 0. 0. 0. 0.]
[0. 0. 0. 0. 0.]]
[[0. 0. 0. 0. 0.]
[0. 0. 0. 0. 0.]
[0. 0. 0. 0. 0.]]]
이렇게 3차원 array도 생성할 수 있습니다.
결과를 보면 행 개수 = 2, 열 개수 = 3인 array를 생성하는데
이 array에 있는 각각의 요소의 개수가 5개인 것을 알 수 있습니다.
[
[ [0. 0. 0. 0. 0.] [0. 0. 0. 0. 0.] [0. 0. 0. 0. 0.] ]
[ [0. 0. 0. 0. 0.] [0. 0. 0. 0. 0.] [0. 0. 0. 0. 0.] ]
]
결과 array를 좀 더 직관적으로 보기 쉽게 배열하면 위와 같습니다.
행 개수 = 2개, 열 개수 = 3개이며 각각의 요소는 총 5개 짜리 array가 되는 것이죠.
728x90
반응형
'Python > Python numpy' 카테고리의 다른 글
Python numpy : tolist (array를 list로 변환. array list) (0) | 2021.12.29 |
---|---|
Python numpy : copy (array 복사본 생성하기) (0) | 2021.12.29 |
Python numpy : flatten, flat (array를 1차원으로 변환, 1차원 array indexing) (0) | 2021.12.27 |
Python numpy : T (numpy array transpose, array 행/열 바꾸기) (1) | 2021.12.27 |
Python numpy : ndim (array의 차원(dimention) 출력하기) (0) | 2021.12.26 |
Comments