当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Matplotlib.figure.Figure.colorbar()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Figure模块提供了顶层Artist,即Figure,其中包含所有绘图元素。此模块用于控制所有图元的子图和顶层容器的默认间距。

matplotlib.figure.Figure.colorbar()函数

matplotlib库的图形模块的colorbar()方法用于向绘图添加颜色条。

用法: colorbar(self, mappable, cax=None, ax=None, use_gridspec=True, **kw)


参数:这接受以下描述的以下参数:

  • mappable:对于Figure.colorbar方法,此参数是必需的。
  • cax:此参数是颜色条将绘制到的轴。
  • ax:此参数是父轴,将从中窃取用于新彩条轴的空间。
  • use_gridspec:此参数用于使用gridspec模块创建Subplot的实例。

返回值:此方法不返回任何值。

以下示例说明了matplotlib.figure中的matplotlib.figure.Figure.colorbar()函数:

范例1:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
import matplotlib.tri as mtri 
import numpy as np 
       
# Create triangulation. 
x = np.asarray([0, 1, 2, 3, 0.5, 
                1.5, 2.5, 1, 2,  
                1.5]) 
  
y = np.asarray([0, 0, 0, 0, 1.0, 
                1.0, 1.0, 2, 2,  
                3.0]) 
  
triangles = [[0, 1, 4], [1, 5, 4],  
             [2, 6, 5], [4, 5, 7], 
             [5, 6, 8], [5, 8, 7], 
             [7, 8, 9], [1, 2, 5],  
             [2, 3, 6]] 
  
triang = mtri.Triangulation(x, y, triangles) 
z = np.cos(3 * x) * np.cos(6 * y)+np.sin(6 * x) 
       
fig, axs = plt.subplots() 
t = axs.tricontourf(triang, z) 
axs.tricontour(triang, z, colors ='white') 
fig.colorbar(t) 
  
fig.suptitle('matplotlib.figure.Figure.colorbar() \ 
function Example\n\n', fontweight ="bold") 
  
plt.show()

输出:

范例2:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
import matplotlib.tri as tri 
import numpy as np 
     
n_angles = 26
n_radii = 10
min_radius = 0.35
radii = np.linspace(min_radius, 
                    0.95, 
                    n_radii) 
   
angles = np.linspace(0, 2 * np.pi, 
                     n_angles, 
                     endpoint = False) 
  
angles = np.repeat(angles[..., np.newaxis],  
                   n_radii, 
                   axis = 1) 
  
angles[:, 1::2] += np.pi / n_angles 
   
x = (10 * radii * np.cos(angles)).flatten() 
y = (10 * radii * np.sin(angles)).flatten() 
z = (np.cos(4 * radii) * np.cos(3 * angles)).flatten() 
   
triang = tri.Triangulation(x, y) 
   
triang.set_mask(np.hypot(x[triang.triangles].mean(axis = 1), 
                         y[triang.triangles].mean(axis = 1)) 
                < min_radius) 
     
fig1, ax1 = plt.subplots() 
ax1.set_aspect('equal') 
tcf = ax1.tricontourf(triang, z) 
fig1.colorbar(tcf) 
ax1.tricontour(triang, z, colors ='g') 
  
fig1.suptitle('matplotlib.figure.Figure.colorbar()\ 
function Example\n\n', fontweight ="bold") 
  
plt.show()

输出:




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.figure.Figure.colorbar() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。