반응형
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
- Google Excel
- GIT
- Google Spreadsheet
- django
- PySpark
- array
- Apache
- string
- c#
- Redshift
- math
- Excel
- Mac
- SQL
- PostgreSQL
- Java
- Tkinter
- Github
- gas
- numpy
- Python
- Kotlin
- google apps script
- 파이썬
- hive
- list
- matplotlib
- PANDAS
- dataframe
Archives
- Today
- Total
달나라 노트
Python numpy : ndim (array의 차원(dimention) 출력하기) 본문
Python/Python numpy
Python numpy : ndim (array의 차원(dimention) 출력하기)
CosmosProject 2021. 12. 26. 21:45728x90
반응형
numpy의 ndim attribute는 어떤 array가 몇차원인지를 알려줍니다.
아래는 ndim attribute를 사용한 예시입니다.
import numpy as np
arr_test = np.array(
[1, 2, 3, 4, 5] # 1차 array
)
print(arr_test)
print(arr_test.ndim)
-- Result
[1 2 3 4 5]
1
import numpy as np
arr_test = np.array(
[ # 1차 array
[1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5] # 2차 array
]
)
print(arr_test)
print(arr_test.ndim)
-- Result
[[1 2 3 4 5]
[1 2 3 4 5]
[1 2 3 4 5]]
2
import numpy as np
arr_test = np.array(
[ # 1차 array
[ # 2차 array
[1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5] # 3차 array
],
[ # 2차 array
[1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5] # 3차 array
],
]
)
print(arr_test)
print(arr_test.ndim)
-- Result
[[[1 2 3 4 5]
[1 2 3 4 5]
[1 2 3 4 5]]
[[1 2 3 4 5]
[1 2 3 4 5]
[1 2 3 4 5]]]
3
728x90
반응형
'Python > Python numpy' 카테고리의 다른 글
Comments