在matplotlib python中制作hexbin填充方轴上的空白区域?

时间:2011-12-10 23:07:03

标签: python matlab graph plot matplotlib

我正在尝试使用hexbin在方轴上绘制一些数据。我使用以下内容:

import matplotlib.cm as cm                              
plt.figure()  
num_pts = 1000             
x = rand(num_pts) * 100                                                                          
y = rand(num_pts) * 250              
x_min = 0               
x_max = 150                       
x_step = 25

y_min = 50           
y_max = 300                          
y_step = 50       

s = plt.subplot(1,1,1)                                                                                                                              
plt.hexbin(x,y,cmap=cm.jet,gridsize=20)             
plt.xticks(range(x_min,x_max+x_step,x_step))                                                                                                                           
plt.yticks(range(y_min,y_max+y_step,y_step))                                                                                                                           
# square axes                
s.axes.set_aspect(1/s.axes.get_data_ratio())   

我希望轴是方形的,我想设置自己的xticks / yticks和x-y限制。对于某些轴值,不会有数据,因此hexbin计算的计数应为零 - 我希望hexbin将其绘制为空白空间,而不是将其保留为“白色”/空白如果使用cm.jet colormap。

我现在得到的是这个。

如何使用其色彩图填充空白区域?感谢。enter image description here

2 个答案:

答案 0 :(得分:9)

我认为答案是使用extent = keyword参数,如:

plt.hexbin(x, y, cmap=cm.jet, gridsize = 20, extent=[x_min, x_max, y_min, y_max]) 

答案 1 :(得分:4)

您也可以创建一个轴并将其背景颜色设置为最小色彩图值(或您想要的任何颜色):

fig = plt.figure()
ax = fig.add_subplot(111,axisbg=cm.jet(0))