当我打印一个 numpy 数组时,我得到了一个截断的表示,但我想要完整的数组。
>>> 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 数组时显示完整的数组表示,可以使用 numpy.set_printoptions 函数来调整打印选项。通过设置 threshold 参数为 numpy.inf,你可以确保数组不会被截断。
numpy.set_printoptions
threshold
numpy.inf
以下是一个示例:
import numpy as np # 设置打印选项 np.set_printoptions(threshold=np.inf) # 创建一个大的 NumPy 数组 arr = np.arange(10000) print(arr) # 创建一个重塑后的数组 reshaped_arr = arr.reshape(250, 40) print(reshaped_arr)
这样,在打印数组时,就不会显示截断的表示,而是显示完整的数组内容。
import numpy as np
np.set_printoptions(threshold=np.inf)