2016-07-25 71 views
1

問題Matplotlib-任何方法來使用整數和小數點在顏色條滴答?

我有一個情節,我需要的顏色條蜱要大一些,因爲我加入這個情節多平面曲線圖&刻度標記將難以一切如此冷凝,否則讀。我的問題是,如果我使標籤更大,則由於小數點數爲0,它們將在顏色條末端附近開始互相碰撞。我不能使所有的蜱整數,因爲我需要在色條的中心左側&附近的小數標籤。

enter image description here

代碼

這是我用來做情節的代碼。

#Set variables 
lonlabels = ['0','45E','90E','135E','180','135W','90W','45W','0'] 
latlabels = ['90S','60S','30S','Eq.','30N','60N','90N'] 

#Set cmap properties 
bounds = np.array([0.001,0.01,0.1,1,5,10,25,50]) 
norm = colors.LogNorm(vmin=0.0001,vmax=50) #creates logarithmic scale 
cmap = plt.get_cmap('jet') 
cmap.set_over('#660000') #everything above range of colormap 

#Create basemap 
fig,ax = plt.subplots(figsize=(15.,10.)) 
m = Basemap(projection='cyl',llcrnrlat=-90,urcrnrlat=90,llcrnrlon=0,urcrnrlon=360.,lon_0=180.,resolution='c') 
m.drawcoastlines(linewidth=1) 
m.drawcountries(linewidth=1) 
m.drawparallels(np.arange(-90,90,30.),linewidth=0.3) 
m.drawmeridians(np.arange(-180.,180.,45.),linewidth=0.3) 
meshlon,meshlat = np.meshgrid(lon,lat) 
x,y = m(meshlon,meshlat) 

#Plot variables 
trend = m.pcolormesh(x,y,lintrends_120,cmap=cmap, norm=norm, shading='gouraud',vmin=0.0001,vmax=50) 

#Set plot properties 
#Colorbar 
cbar=m.colorbar(trend, size='8%',ticks=bounds,extend="max",location='bottom',pad=0.8) 
cbar.set_label(label='Linear Trend (mm/day/decade)',size=25) 
cbar.set_ticklabels(bounds) 
for t in cbar.ax.get_xticklabels(): 
    t.set_fontsize(20) 
#Titles & labels 
ax.set_title('c) 1979-2098',fontsize=35) 
ax.set_xlabel('Longitude',fontsize=25) 
ax.set_xticks(np.arange(0,405,45)) 
ax.set_xticklabels(lonlabels,fontsize=20) 
ax.set_ylabel('Latitude',fontsize=25) 
ax.set_yticks(np.arange(-90,120,30)) 
ax.set_yticklabels(latlabels,fontsize=20) 

在靠近底部的最後一塊代碼中的顏色條塊。

問題

有沒有辦法在彩條刻度標記標籤小數(浮點數)和整數結合,從而1.0,2.0,等會顯示爲1,2,等等呢?我嘗試了兩個單獨的np.array()實例,其中一個是小數,另一個是整數,但是當我追加它們時,它們都變成了浮動。

回答

3

嘗試

bounds = ['0.001','0.01','0.1','1','5','10','25','50'] 
cbar.set_ticklabels(bounds) 
+1

它與只有一個附加的註釋:界限= [ '0.001', '0.01', '0.1', '1', '5',」 10','25','50']應該是boundlabels = ['0.001','0.01','0.1','1','5','10','25','50']或其他類似,因爲np.array()邊界仍然需要指定蜱位於正確的位置。 – ChristineB

1

這很難測試,因爲你的例子不是直接可運行的,但你應該能夠將標籤設置爲你喜歡的任何字符串。像這樣:

bound_labels = [str(v) if v <=1 else str(int(v)) for v in bounds] 
cbar.set_ticklabels(bound_labels) 
相關問題