📜  Python中的 Matplotlib.axes.Axes.hexbin()

📅  最后修改于: 2022-05-13 01:54:28.468000             🧑  作者: Mango

Python中的 Matplotlib.axes.Axes.hexbin()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Axes 类包含大部分图形元素:Axis、Tick、Line2D、Text、Polygon 等,并设置坐标系。 Axes 的实例通过回调属性支持回调。

matplotlib.axes.Axes.hexbin()函数

matplotlib 库的 axes 模块中的Axes.hexbin()函数用于制作点 x、y、

下面的示例说明了 matplotlib.axes 中的 matplotlib.axes.Axes.hexbin()函数:

示例 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
  
np.random.seed(19680801)
  
n = 100000
x = np.random.standard_normal(n)
y = 12 * np.random.standard_normal(n)
  
fig, ax = plt.subplots()
ax.hexbin(x, y, gridsize = 50, cmap ='Greens')
ax.set_title('matplotlib.axes.Axes.hexbin() Example')
plt.show()

输出:

示例 2:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
  
np.random.seed(19680801)
  
n = 100000
x = np.random.standard_normal(n)
y = 2 * np.random.standard_normal(n)
z =[1, 2, 3, 4]
xmin = x.min()
xmax = x.max()
ymin = y.min()
ymax = y.max()
  
fig, axs = plt.subplots(ncols = 3,
                        sharey = True)
  
ax = axs[0]
hb = ax.hexbin(x, y, gridsize = 50, 
               bins ='log', 
               cmap ='BuGn')
  
ax.set(xlim =(xmin, xmax), 
       ylim =(ymin, ymax))
  
cb = fig.colorbar(hb, ax = ax)
cb.set_label('log')
  
ax = axs[1]
hb = ax.hexbin(x, y, gridsize = 50,
               cmap ='Greens')
  
ax.set(xlim =(xmin, xmax), 
       ylim =(ymin, ymax))
  
cb = fig.colorbar(hb, ax = ax)
cb.set_label('Values')
  
ax.set_title('matplotlib.axes.Axes.\
hexbin() Example')
  
ax = axs[2]
hb = ax.hexbin(x, y, gridsize = 50,
               bins = z, cmap ='BuGn')
  
ax.set(xlim =(xmin, xmax), 
       ylim =(ymin, ymax))
  
cb = fig.colorbar(hb, ax = ax)
cb.set_label(z)
plt.show()

输出: