python使用matplotlib绘制折线图的示例代码
作者:全心全意_运维 时间:2021-06-25 22:51:18
示例代码如下:
#!/usr/bin/python
#-*- coding: utf-8 -*-
import matplotlib.pyplot as plt
# figsize - 图像尺寸(figsize=(10,10))
# facecolor - 背景色(facecolor="blue")
# dpi - 分辨率(dpi=72)
fig = plt.figure(figsize=(10,10),facecolor="blue") #figsize默认为4,4(图像尺寸)
ax1 = fig.add_subplot(1,1,1) # 行 列 位置
#ax2 = fig.add_subplot(2,1,2)
#ax = fig.add_subplot(1,1,1)
ax1.set_title("title") #不支持中文
# 设置坐标轴的label
ax1.set_xlabel("ax1 - X")
ax1.set_ylabel("ax1 - Y")
# 设置刻度
#ax1.set_xticks([1,2,3,4,5])
#ax1.set_yticks([10,20,30,40,50])
# 设置刻度label
#ax1.set_xticklabels(["one","two","three","four","five"]) # one对应1
# 绘制折线图
x = [1,2,3,4,5]
y = [80,3,4,5,1]
#生成正弦波曲线
import numpy as np
x = np.linspace(0,np.pi * 2,20)
y = np.sin(x)
#生成余弦波曲线
y2 = np.cos(x)
#ax1.plot(x,y,x,y2) #在一张图中放置两条曲线
# 使用图例
# linewidth设置线条粗细,linestyle设置线条样式,marker设置数据点
ax1.plot(x,y, label = "SIN",color="y",linewidth=3,linestyle="--",marker="o")
ax1.plot(x,y2,label= "COS",color="r")
ax1.legend(loc="best") # 使用图例 #best为最佳位置 (upper left 左上;center 居中;...)
# 注释,比如说明最高点
# xy指定最高点,xytext指定注释位置
arrowprops = {"arrowstyle": "->","color":"red"} #设置箭头
ax1.annotate("max",xy=(np.pi/2,1),xytext=(np.pi/2+0.5,1),arrowprops=arrowprops)
plt.show()
效果如下
来源:https://www.cnblogs.com/zhangquan-yw/p/12418951.html
标签:python,matplotlib,绘制,折线图
0
投稿
猜你喜欢
Django教程笔记之中间件middleware详解
2023-06-18 00:48:33
Python使用minidom读写xml的方法
2022-03-14 11:35:22
Microsoft Office Access 2007使用技巧
2008-05-23 13:23:00
Python 阶乘详解
2022-01-16 13:56:00
nonebot插件之chatgpt使用详解
2023-07-15 09:56:17
CSS灵活运行注释带来的益处
2008-04-21 13:51:00
Django自定义用户表+自定义admin后台中的字段实例
2022-05-27 08:16:01
Python urlopen()参数代码示例解析
2021-05-22 18:26:14
Gradio机器学习模型快速部署工具应用分享
2023-06-30 01:33:33
Mysql精粹系列(精粹)
2024-01-21 02:27:05
python3.5+tesseract+adb实现西瓜视频或头脑王者辅助答题
2022-06-13 04:36:44
Python Spyder 调出缩进对齐线的操作
2023-07-17 00:56:04
python中实现词云图的示例
2021-08-04 22:11:33
python GUI库图形界面开发之PyQt5窗口布局控件QStackedWidget详细使用方法
2023-11-13 13:35:51
javaScript产生随机数的用法小结
2024-04-17 10:40:20
Tensorflow加载Vgg预训练模型操作
2023-10-13 10:56:23
PHP中的排序函数sort、asort、rsort、krsort、ksort区别分析
2023-11-23 11:50:55
分享一下SQL Server执行动态SQL的正确方式
2024-01-14 00:17:56
python面向对象实现名片管理系统文件版
2022-11-25 16:27:45
python中字符串最常用的十三个处理操作记录
2023-10-19 23:25:32