大家好,本文将围绕python excel数据处理画图展开说明,python数据画好看的图是一个很多人都想弄明白的事情,想搞清楚python 数据分析画图需要先了解以下几个事情。
1.折线图
import matplotlib.pyplot as plt
# 准备数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制折线图
plt.plot(x, y)
# 添加标题和标签
plt.title('My Plot')
plt.xlabel('X Label')
plt.ylabel('Y Label')
# 显示图形
plt.show()
2.散点图
import matplotlib.pyplot as plt
# 准备数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
sizes = [100, 30, 150, 50, 200]
colors = ['red', 'blue', 'green', 'orange', 'purple']
# 绘制散点图
for i in range(len(x)):
plt.scatter(x[i], y[i], color=colors[i], size&