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.

Python Matplotlib库的基本使用最先出现在Python成神之路

版权声明:
作者:ht
链接:https://www.techfm.club/p/28233.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>