在 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()
输出
广告