如何在 Matplotlib 中更改虚线的虚线间距?
matplotlibserver side programmingprogramming
要在 matplotlib 中更改虚线的虚线间距,我们可以采取以下步骤 −
使用 numpy 创建数据点 x 和 y。
用值 3 初始化两个变量 space 和 dash_len。
使用 plot() 方法绘制 x 和 y,线型为 '--',dashes 元组存储虚线的属性。
要显示图形,请使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(-1, 1, 100) y = np.sin(x) space = 3 dash_len = 3 plt.plot(x, y, c='red', linestyle='--', dashes=(dash_len, space), lw=5) plt.show()