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


Python Matplotlib.axes.Axes.set_title()用法及代码示例


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

matplotlib.axes.Axes.set_title()函数

matplotlib库的轴模块中的Axes.set_title()函数用于设置轴的标题。

用法: Axes.set_title(self, label, fontdict=None, loc=’center’, pad=None, **kwargs)


参数:此方法接受以下参数。

  • label:此参数是用于标题的文本。
  • fontdict:此参数是控制标题文本外观的字典。
  • loc:此参数用于设置标题{'center','left','right'}的位置。
  • pad:此参数是标题距轴顶部的偏移量(以磅为单位)。

返回值:此方法返回代表标题的matplotlib文本实例。

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

范例1:

# Implementation of matplotlib function 
import os 
from matplotlib import font_manager as fm, rcParams 
import matplotlib.pyplot as plt 
  
fig, ax = plt.subplots() 
  
fpath = os.path.join(rcParams["datapath"],  
                     "fonts/ttf/cmr10.ttf") 
  
prop = fm.FontProperties(fname = fpath) 
fname = os.path.split(fpath)[1] 
ax.set_title('Title with special font:{}'.format(fname), 
             fontproperties = prop,  
             fontsize = 14) 
  
plt.show()

输出:

范例2:

# Implementation of matplotlib function 
import numpy as np 
import matplotlib.pyplot as plt 
  
x = np.arange(0.1, 5, 0.1) 
y = np.exp(-x) 
  
yerr = 0.1 + 0.1 * np.sqrt(x) 
  
fig, axs = plt.subplots(nrows = 1, 
                        ncols = 2,  
                        sharex = True) 
ax = axs[0] 
ax.errorbar(x, y, yerr = yerr,  
            color ="green") 
ax.set_title('Title of Axes 1',  
             fontweight ="bold") 
  
ax = axs[1] 
ax.errorbar(x, y, yerr = yerr, 
            errorevery = 5,  
            color ="green") 
  
ax.set_title('Title of Axes 2', 
             fontweight ="bold") 
  
  
  
fig.suptitle('matplotlib.axes.Axes.set_title() \ 
function Example\n') 
  
plt.show()

输出:




相关用法


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