Comment afficher un tableau NumPy complet sans troncature
Lors de l'impression de tableaux NumPy, vous rencontrez souvent des représentations tronquées. Pour afficher l'intégralité du tableau, utilisez la fonction numpy.set_printoptions.
import sys import numpy # Set threshold to maximum size to disable truncation numpy.set_printoptions(threshold=sys.maxsize)
Considérons l'exemple suivant :
>>> 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]])
Maintenant, en utilisant numpy.set_printoptions, nous pouvons imprimer le tableau complet sans troncature :
numpy.set_printoptions(threshold=sys.maxsize) print(numpy.arange(10000)) print(numpy.arange(10000).reshape(250, 40))
Sortie :
[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]]
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!