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