반응형
넘파이 어레이 값 타입 확인 dtype
dtype(data.type 약자) 함수를 활용하여 어레이의 타입을 확인할 수 있습니다.
>>> import numpy as np
>>> arr = np.array([1,2,3,4,5])
>>> arr.dtype
dtype('int64')
>>> arr2 = np.array([1.2, 2, 3, 4, 5])
>>> arr2.dtype
dtype('float64')
반응형
'python' 카테고리의 다른 글
numpy array to image (0) | 2023.08.03 |
---|---|
넘파이 어레이 크기 확인 shape (0) | 2023.08.03 |
넘파이 최대값 위치 찾기 / 넘파이 최소값 위치 찾기 (0) | 2023.08.03 |
python line graph matplolib, plotly (0) | 2023.08.03 |
python check filesize os.path.getsize (0) | 2023.07.31 |
댓글