matplotlib.pyplot.xlabels()函数
matplotlib.pyplot.xlabel()函数
matplotlib库pyplot模块中的xlabel()函数用于设置x轴的标签。
语法:matplotlib.pyplot.xlabel(xlabel, fontdict=None,labelpad=None,**kwargs)
参数:该方法接受如下参数说明:
- xlabel:标签文本。并且包含字符串值。
- labelpad:这个参数用于从轴包围框中分隔点,包括刻度和刻度标签,其默认值为None。
- **kwargs:这个参数是Text属性,用于控制标签的外观。
下面的例子演示了matplotlib.pyplot.xlabel()函数在matplotlib.pyplot中的作用:
示例1
# Implementation of matplotlib.pyplot.xlabels()
# function
import numpy as np
import matplotlib.pyplot as plt
t = np.arange(-180.0, 180.0, 0.1)
s = np.radians(t)/2.
plt.plot(t, s, '-', lw = 2)
plt.xlabel('Longitude')
plt.ylabel('Latitude')
plt.title('xlabels() function')
plt.grid(True)
plt.show()
输出:
示例2
# Implementation of matplotlib.pyplot.xlabels()
# function
import numpy as np
import matplotlib.pyplot as plt
valx1 = np.linspace(0.0, 5.0)
x2 = np.linspace(0.0, 2.0)
valy1 = np.cos(2 * np.pi * valx1) * np.exp(-valx1)
y2 = np.cos(2 * np.pi * x2)
plt.subplot(2, 1, 1)
plt.plot(valx1, valy1, 'o-')
plt.title('xlabel() Example')
plt.ylabel('Damped oscillation')
plt.subplot(2, 1, 2)
plt.plot(x2, y2, '.-')
plt.xlabel('time (s)')
plt.ylabel('Undamped')
plt.show()
输出: