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