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 |
시간날때마다 틈틈이 이것저것 해보며 블로그에 글을 남깁니다.
블로그의 문서는 종종 최신 버전으로 업데이트됩니다.
여유 시간이 날때 진행하는 거라 언제 진행될지는 알 수 없습니다.
영화,책, 생각등을 올리는 블로그도 운영하고 있습니다.
https://freewriting2024.tistory.com
제가 쓴 책도 한번 검토해보세요 ^^
그렇게 천천히 걸으면서도 그렇게 빨리 앞으로 나갈 수 있다는 건.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!