给定两个一维数组,用python中的seaborns画折现图
时间: 2023-03-30 12:01:24 浏览: 194
利用python画出折线图
可以使用seaborn中的lineplot函数来画折线图,代码如下:
import seaborn as sns
import matplotlib.pyplot as plt
# 两个一维数组
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
# 画折线图
sns.lineplot(x=x, y=y)
# 显示图像
plt.show()
阅读全文