如何在Seaborn lineplot中在Matplotlib上绘制虚线?

如何在Seaborn lineplot中在Matplotlib上绘制虚线?

要在Seaborn lineplot上绘制虚线,我们可以在 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()

输出

如何在Seaborn lineplot中在Matplotlib上绘制虚线?

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程