如何用 Matplotlib 在 Seaborn 折线图上画一条虚线?
要在 Seaborn 折线图上画一条虚线,我们可以在 lineplot() 方法的参数中使用 linestyle="dashed"。
步骤
设置图形大小和调整子图之间的内边距。
使用 numpy 创建 x 和 y 数据点。
在 lineplot() 方法的参数中使用 x 和 y 数据点和 linestyle="dashed"。
要显示图形,请使用 show() 方法。
范例
import seaborn as sns 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.random.rand(10) y = np.random.rand(10) ax = sns.lineplot(x=x, y=y, linestyle="dashed") plt.show()
输出
广告