打印numpy数组的全部内容

时间:2013-04-12 20:35:07

标签: python printing numpy

我正在使用python中的图像处理,我想输出一个变量,现在变量b是一个形状为(200,200)的numpy数组。当我print b时,我看到的是:

array([[ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       ..., 
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.]])

如何打印出这个数组的全部内容,将其写入文件或简单的内容,以便我可以完整地查看内容?

2 个答案:

答案 0 :(得分:12)

当然,您可以使用以下内容将数组的打印阈值更改为answered elsewhere

np.set_printoptions(threshold=np.nan)

但是根据你想要看的内容,可能有更好的方法。例如,如果你的数组真的大部分是你所显示的零,并且你想检查它是否具有非零的值,你可能会看到如下内容:

import numpy as np
import matplotlib.pyplot as plt

In [1]: a = np.zeros((100,100))

In [2]: a
Out[2]: 
array([[ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       ..., 
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.]])

更改一些值:

In [3]: a[4:19,5:20] = 1

它看起来仍然一样:

In [4]: a
Out[4]: 
array([[ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       ..., 
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.],
       [ 0.,  0.,  0., ...,  0.,  0.,  0.]])

检查一些不需要手动查看所有值的内容:

In [5]: a.sum()
Out[5]: 225.0

In [6]: a.mean()
Out[6]: 0.022499999999999999

或绘制它:

In [7]: plt.imshow(a)
Out[7]: <matplotlib.image.AxesImage at 0x1043d4b50>

或保存到文件:

In [11]: np.savetxt('file.txt', a)

array

答案 1 :(得分:0)

to_print = "\n".join([", ".join(row) for row in b])
print (to_print) #console

f = open("path-to-file", "w")
f.write(to_print) #to file

如果它是numpy数组:Print the full numpy array