반응형
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
- c#
- Mac
- Github
- array
- Google Spreadsheet
- PANDAS
- gas
- GIT
- PostgreSQL
- Java
- Apache
- Google Excel
- Excel
- PySpark
- string
- Tkinter
- list
- google apps script
- Kotlin
- numpy
- Redshift
- hive
- matplotlib
- dataframe
- Python
- django
- 파이썬
- math
Archives
- Today
- Total
목록zeros (1)
달나라 노트
Python numpy : zeros (0으로 채워진 array 생성)
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을 모두 정수(in..
Python/Python numpy
2021. 12. 27. 12:29