NumPy 배열이 일정 크기 이상이 되면 print를 사용하여 출력시 다음처럼 생략이 됩니다.
[[ 0] [ 1] [ 2] ... [9997] [9998] [9999]] |
사용한 코드입니다.
import numpy as np a = np.arange(10000) b = np.expand_dims(a, axis=1) print(b) |
2021. 10. 4 - 최초작성
배열 출력시 옵션을 변경을 위해 다음 코드를 추가하면 전체 배열을 모두 출력할 수 있습니다.
import sys
np.set_printoptions(threshold=sys.maxsize)
import numpy as np import sys np.set_printoptions(threshold=sys.maxsize) a = np.arange(10000) b = np.expand_dims(a, axis=1) print(b) |
np.set_printoptions(threshold=np.nan)를 사용할 경우 Python3에서는 다음과 같은 에러가 발생할 수 있습니다.
Traceback (most recent call last):
File "d:/code/python/test.py", line 7, in <module>
np.set_printoptions(threshold=np.nan)
File "C:\Users\webnautes\AppData\Local\Programs\Python\Python37\lib\site-packages\numpy\core\arrayprint.py", line 245, in set_printoptions
floatmode, legacy)
File "C:\Users\webnautes\AppData\Local\Programs\Python\Python37\lib\site-packages\numpy\core\arrayprint.py", line 86, in _make_options_dict
raise ValueError("threshold must be non-NAN, try "
ValueError: threshold must be non-NAN, try sys.maxsize for untruncated representation
출처
'Python > Numpy' 카테고리의 다른 글
Python 예제 - Numpy 배열에서 0이 아닌 최소값 찾기 (0) | 2021.12.01 |
---|---|
Python List의 append와 Numpy 배열의 append 비교 (0) | 2021.11.29 |
NumPy reshape에 -1을 사용하는 이유 (0) | 2021.10.04 |
두 개의 2차원 넘파이 배열에 0축(axis=0)을 추가하여 하나로 합치기 (0) | 2021.09.30 |
Python에서 OpenCV 임포트시 에러 - ImportError: numpy.core.multiarray failed to import (3) | 2020.11.14 |