标签: python numpy
如屏幕截图所示,2D numpy数组被截断以用于打印目的。我想要显示所有元素。是否有选项设置来启用该行为?
numpy
答案 0 :(得分:3)
有关打印选项的信息,请参阅the docs。具体做法是:
threshold:int,optional 触发摘要而非完整repr的数组元素总数(默认为1000)。
threshold:int,optional
触发摘要而非完整repr的数组元素总数(默认为1000)。
因此,将threshold设置为np.inf意味着永远不会对其进行汇总。
threshold
np.inf
np.set_printoptions(threshold=np.inf)