matplotlib.pyplot.rcdefaults()函数
Matplotlib是Python中的一个库,它是NumPy库的数值-数学扩展。Pyplot是一个基于状态的Matplotlib模块接口,该模块提供了一个类似matlab的接口。Pyplot中可以使用的绘图有直线图、轮廓图、直方图、散点图、三维图等。
matplotlib.pyplot.rcdefaults()函数
matplotlib库pyplot模块中的rcdefaults()函数用于从matplotlib的内部默认样式恢复rc参数。
语法:matplotlib.pyplot.rcdefaults ()
参数:此方法不接受任何参数。
返回:此方法不返回任何值。
下面的例子演示了matplotlib.pyplot.rcdefaults()函数在matplotlib.pyplot中的作用:
示例1
# implementation of the matplotlib function
import matplotlib.pyplot as plt
plt.subplot(211)
plt.rc('font', weight ='bold')
plt.rc('xtick.major', size = 5, pad = 7)
plt.rc('xtick', labelsize = 15)
plt.plot([1, 2, 3])
plt.text(0.4, 3.5, 'matplotlib.pyplot.rcdefaults() Example')
plt.rcdefaults()
plt.subplot(212)
plt.plot([1, 2, 3])
plt.grid(True)
plt.show()
输出:
示例2
# implementation of the matplotlib function
import matplotlib.pyplot as plt
import numpy as np
np.random.seed(19680801)
plt.rcdefaults()
fig, ax = plt.subplots()
people = ('Geek1', 'Geek2', 'Geek3', 'Geek4', 'Geek5')
y_pos = np.arange(len(people))
performance = 3 + 5 * np.random.rand(len(people))
error = np.random.rand(len(people))
ax.bar(y_pos, performance, xerr = error, align ='center')
ax.set_yticks(y_pos)
ax.set_yticklabels(people)
ax.invert_yaxis()
plt.grid(True)
plt.title('matplotlib.pyplot.rcdefaults() Example')
plt.show()
输出: