잘림 없이 전체 NumPy 배열을 표시하는 방법
NumPy 배열을 인쇄할 때 잘린 표현을 자주 접하게 됩니다. 전체 배열을 표시하려면 numpy.set_printoptions 함수를 활용하세요.
import sys import numpy # Set threshold to maximum size to disable truncation numpy.set_printoptions(threshold=sys.maxsize)
다음 예를 고려해 보세요.
>>> numpy.arange(10000) array([ 0, 1, 2, ..., 9997, 9998, 9999]) >>> numpy.arange(10000).reshape(250, 40) array([[ 0, 1, 2, ..., 37, 38, 39], [ 40, 41, 42, ..., 77, 78, 79], [ 80, 81, 82, ..., 117, 118, 119], ..., [9880, 9881, 9882, ..., 9917, 9918, 9919], [9920, 9921, 9922, ..., 9957, 9958, 9959], [9960, 9961, 9962, ..., 9997, 9998, 9999]])
이제 numpy.set_printoptions를 사용하여 전체 배열을 인쇄할 수 있습니다. 잘림:
numpy.set_printoptions(threshold=sys.maxsize) print(numpy.arange(10000)) print(numpy.arange(10000).reshape(250, 40))
출력:
[0 1 2 ... 9997 9998 9999] [[ 0 1 2 ... 37 38 39] [ 40 41 42 ... 77 78 79] [ 80 81 82 ... 117 118 119] ... [9880 9881 9882 ... 9917 9918 9919] [9920 9921 9922 ... 9957 9958 9959] [9960 9961 9962 ... 9997 9998 9999]]
위 내용은 인쇄할 때 NumPy 배열 잘림을 방지하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!