📜  Python中的 Matplotlib.pyplot.rcdefaults()

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

Python中的 Matplotlib.pyplot.rcdefaults()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 PyplotMatplotlib模块的基于状态的接口,它提供了一个类似 MATLAB 的接口。在 Pyplot 中可以使用各种图,包括线图、等高线图、直方图、散点图、3D 图等。

matplotlib.pyplot.rcdefaults()函数

matplotlib 库的 pyplot 模块中的rcdefaults()函数用于从 Matplotlib 的内部默认样式中恢复 rc 参数。

下面的示例说明了 matplotlib.pyplot 中的 matplotlib.pyplot.rcdefaults()函数:

示例 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()

输出: