在 Matplotlib 中改变虚线中的破折号间距?
要更改 matplotlib 中虚线中的破折号间距,我们可以执行以下步骤 -
使用 numpy 创建数据点 x 和 y。
使用值 3 初始化两个变量**space **和**dash_len**。
使用 plot() 方法绘制 x 和 y,虚线样式为“--”,虚线元组存储虚线的属性。
要显示图形,请使用**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()
输出
广告