在 Matplotlib 中使用 fivethirtyeight 样式表绘制曲线
要使用 fivethirtyeight 样式表,我们可以执行以下步骤 –
- 设置图形大小并调整子图之间和周围的填充。
- 要使用 fivethirtyeight ,可以使用 plt.style.use() 方法。
- 使用numpy创建 x 数据点。
- 使用 subplots() 方法创建一个图和一组子图。
- 使用 plot() 方法绘制三条曲线。
- 设置绘图的标题。
- 要显示图形,使用 show() 方法。
示例
import matplotlib.pyplot as plt
import numpy as np
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
plt.style.use('fivethirtyeight')
x = np.linspace(0, 10)
fig, ax = plt.subplots()
ax.plot(x, np.sin(x) + x + np.random.randn(50))
ax.plot(x, np.sin(x) + 0.5 * x + np.random.randn(50))
ax.plot(x, np.sin(x) + 2 * x + np.random.randn(50))
ax.set_title("'fivethirtyeight' style sheet")
plt.show()