如何用 Matplotlib 在 Seaborn 折线图上画一条虚线?


要在 Seaborn 折线图上画一条虚线,我们可以在 lineplot() 方法的参数中使用 linestyle="dashed"

步骤

  • 设置图形大小和调整子图之间的内边距。

  • 使用 numpy 创建 xy 数据点。

  • lineplot() 方法的参数中使用 xy 数据点和 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()

输出

更新时间:2021 年 6 月 1 日

5,000+ 次浏览

开启你的 职业

完成课程获得认证

立刻开始
广告