Python Matplotlib库的基本使用
目录
1.一个坐标系中绘制多个图像linestyle = " "color = " "plt.legend(loc=" " or 数字)
2.多个坐标系绘制3.其他图例应用举例折线图(因为横坐标过于密集, 类似为曲线图)散点图的绘制柱状图的绘制Pie 图的绘制
1.一个坐标系中绘制多个图像
# 导入模块
import matplotlib.pyplot as plt
import random
# 0.准备数据
x = range(61) # range对象, 返回值为 一个整数序列[0, ..., 60]共 61 个数字
y_shanghai = [random.uniform(15, 18) for i in x] #
y_beijing = [random.uniform(1, 3) for i in x]
# 1.创建画布
plt.
共有 0 条评论