赞
踩
要使用Python进行数据可视化,可以使用matplotlib库来绘制折线图。以下是一个简单的示例代码:
pip install matplotlib
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.xlabel('X轴')
plt.ylabel('Y轴')
plt.title('折线图')
plt.show()
完整的示例代码如下:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.xlabel('X轴')
plt.ylabel('Y轴')
plt.title('折线图')
plt.show()
运行代码,将会显示一个简单的折线图。你可以根据具体的需求,修改数据和图表的样式来满足你的需求。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。