上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 30 下一页
摘要: windows支持中文:安装中文字体 代码中配置--可以显示中文了 字体下载:https://pan.baidu.com/s/13IXLXm1gE4UIRtG31pVM6w 提取码:u5cy 代码中加两个行就可以显示中文了,windows解决很简单。注意SimHei是安装的字体,如果安装其他字体可以 阅读全文
posted @ 2019-09-12 01:50 Jumpkin1122 阅读(842) 评论(0) 推荐(0) 编辑
摘要: """ 直线图 颜色:b-蓝色,g-绿色,r-红色,c-蓝绿色,y-黄色,k-黑色,w-白色 形状:o-圆形,*-*,+-+,x-x 线条:- 实现,-- 虚线, -. 点实现, : 点线 """ import matplotlib.pyplot as plt # 1.创建画布 plt.figure() # 2.绘画直线图 plt.plot([1, 2, ... 阅读全文
posted @ 2019-09-12 01:46 Jumpkin1122 阅读(394) 评论(0) 推荐(0) 编辑
摘要: """ 设置画布属性并保存图片 """ import matplotlib.pyplot as plt plt.figure(figsize=(10, 4), dpi=80) # 图片长宽和清晰度 plt.plot([1, 2, 3, 4, 5], [13, 14, 12, 16, 13], "b") plt.savefig("image01.png") # 保存图片 plt.show() 阅读全文
posted @ 2019-09-12 01:43 Jumpkin1122 阅读(6460) 评论(0) 推荐(0) 编辑
摘要: """ 添加网格与猫叔 """ import matplotlib.pyplot as plt plt.figure(figsize=(10, 4), dpi=80) # 图片长宽和清晰度 plt.plot([1, 2, 3, 4, 5], [13, 14, 12, 16, 13], "b") plt.grid(True, linestyle="--", alpha=0.5) # 网格 plt.t 阅读全文
posted @ 2019-09-12 01:42 Jumpkin1122 阅读(776) 评论(0) 推荐(0) 编辑
摘要: """ 城市温度变化(支持中文) """ import matplotlib.pyplot as plt import random # 1.准备数据 x = range(60) y_shanghai = [random.uniform(15, 18) for i in x] y_beijing = [random.uniform(1, 3) for i in x] # 2.创建画布 plt.fi 阅读全文
posted @ 2019-09-12 01:40 Jumpkin1122 阅读(252) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 30 下一页