2014-01-12 61 views
9

我製備numpy的矩陣,然後使用matplotlib繪製矩陣,如:Matplotlib情節numpy的矩陣作爲0索引

>>> import numpy 
>>> import matplotlib.pylab as plt 
>>> m = [[0.0, 1.47, 2.43, 3.44, 1.08, 2.83, 1.08, 2.13, 2.11, 3.7], [1.47, 0.0, 1.5,  2.39, 2.11, 2.4, 2.11, 1.1, 1.1, 3.21], [2.43, 1.5, 0.0, 1.22, 2.69, 1.33, 3.39, 2.15, 2.12, 1.87], [3.44, 2.39, 1.22, 0.0, 3.45, 2.22, 4.34, 2.54, 3.04, 2.28], [1.08, 2.11, 2.69, 3.45, 0.0, 3.13, 1.76, 2.46, 3.02, 3.85], [2.83, 2.4, 1.33, 2.22, 3.13, 0.0, 3.83, 3.32, 2.73, 0.95], [1.08, 2.11, 3.39, 4.34, 1.76, 3.83, 0.0, 2.47, 2.44, 4.74], [2.13, 1.1, 2.15, 2.54, 2.46, 3.32, 2.47, 0.0, 1.78, 4.01], [2.11, 1.1, 2.12, 3.04, 3.02, 2.73, 2.44, 1.78, 0.0, 3.57], [3.7, 3.21, 1.87, 2.28, 3.85, 0.95, 4.74, 4.01, 3.57, 0.0]] 
>>> matrix = numpy.matrix(m) 
>>> matrix 
matrix([ 
    [ 0. , 1.47, 2.43, 3.44, 1.08, 2.83, 1.08, 2.13, 2.11, 3.7 ], 
    [ 1.47, 0. , 1.5 , 2.39, 2.11, 2.4 , 2.11, 1.1 , 1.1 , 3.21], 
    [ 2.43, 1.5 , 0. , 1.22, 2.69, 1.33, 3.39, 2.15, 2.12, 1.87], 
    [ 3.44, 2.39, 1.22, 0. , 3.45, 2.22, 4.34, 2.54, 3.04, 2.28], 
    [ 1.08, 2.11, 2.69, 3.45, 0. , 3.13, 1.76, 2.46, 3.02, 3.85], 
    [ 2.83, 2.4 , 1.33, 2.22, 3.13, 0. , 3.83, 3.32, 2.73, 0.95], 
    [ 1.08, 2.11, 3.39, 4.34, 1.76, 3.83, 0. , 2.47, 2.44, 4.74], 
    [ 2.13, 1.1 , 2.15, 2.54, 2.46, 3.32, 2.47, 0. , 1.78, 4.01], 
    [ 2.11, 1.1 , 2.12, 3.04, 3.02, 2.73, 2.44, 1.78, 0. , 3.57], 
    [ 3.7 , 3.21, 1.87, 2.28, 3.85, 0.95, 4.74, 4.01, 3.57, 0. ] 
]) 
>>> fig = plt.figure() 
>>> ax = fig.add_subplot(1,1,1) 
>>> ax.set_aspect('equal') 
>>> plt.imshow(matrix, interpolation='nearest', cmap=plt.cm.ocean) 
>>> plt.colorbar() 
>>> plt.show() 

該圖示出這樣的:

enter image description here

這是罰款,除了我希望我的軸從1-10,而不是0-9(衍生自python的0索引)的事實

有沒有簡單的方法來做到這一點?

非常感謝!

+0

請注意,x軸和y軸的範圍是[[-0.5,9.5]' – Christian

回答

8

可以使用extent可選參數的plt.imshow()功能,這是記錄here。就像這樣:

#All the stuff earlier in the program 
plt.imshow(matrix, interpolation='nearest', cmap=plt.cm.ocean, extent=(0.5,10.5,0.5,10.5)) 
plt.colorbar() 
plt.show() 

對於任意形狀的矩陣,可以將這個代碼更改爲類似這樣:

#All the stuff earlier in the program 
plt.imshow(matrix, interpolation='nearest', cmap=plt.cm.ocean, 
    extent=(0.5,numpy.shape(matrix)[0]+0.5,0.5,numpy.shape(matrix)[1]+0.5)) 
plt.colorbar() 
plt.show() 

這將產生一個情節,看起來像這樣:

Plot output

+0

謝謝!使用範圍有什麼好處,而不是下面的Christian的方法? – GarethPrice

+1

@GarethPrice:假設你有一個1000x1000的矩陣,我想我設置的具體方法會更好,因爲它可以讓numpy選擇應該如何隔開。除此之外,他們幾乎是一樣的,Christian的方法也不需要太多修改就可以使它工作。 – Dan

+1

我認爲從繪圖命令中控制這樣的東西總是可取的。另一種方法需要用'axis'對象來處理,並在'show'等時進行處理。如果事先知道你需要某種方法,最好讓它們開始。 – mmdanziger

2

以獲得所需的輸出代碼之後添加這些行,但以前plt.show()

... 
labels = [0, 1, 3, 5, 7, 9] 
ax.set_xticklabels(labels) 
plt.show() 

注意,X軸和Y軸的範圍是[-0.5, 9.5]不是int [0, 9]

編輯:

要以更靈活的方式(事實上,上面顯示的另一種方式):

labels = range(0, len(m[0])) 
plt.xticks(labels) 
plt.show() 

輸出:

enter image description here

+0

謝謝!同Dan一樣,這樣做有什麼好處,而不是使用程度? – GarethPrice