增大 Matplotlib 中标题和曲线图之间的距离
为增大 matplotlib 中标题和曲线图之间的距离,我们可以采取以下步骤 -
使用 numpy 创建 x 点。
使用 numpy sin 创建 y 点。
设置曲线图的标题。在更改 y 值(在参数中)后,我们可以增大或减小标题和曲线图之间的距离。
使用 plot() 方法绘制 x 点和 y 点,其中颜色为红色,线宽为 2。
使用show() 方法显示图形。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(1, 10, 1000) y = np.sin(x) ttl = plt.title('Sine Curve', y=1.05) plt.plot(x, y, c="red", lw=2) plt.show()
输出
广告