matplotlib 曲线图 和 折线图 plt.plot()实例

作者:MMmiss叶 时间:2022-06-19 13:55:06 

我就废话不多说了,大家还是直接看代码吧!

绘制曲线:


import time
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 10, 1000)
y = np.sin(x)
plt.figure(figsize=(6,4))
plt.plot(x,y,color="red",linewidth=1 )
plt.xlabel("x") #xlabel、ylabel:分别设置X、Y轴的标题文字。
plt.ylabel("sin(x)")
plt.title("正弦曲线图") # title:设置子图的标题。
plt.ylim(-1.1,1.1)# xlim、ylim:分别设置X、Y轴的显示范围。
plt.savefig('quxiantu.png',dpi=120,bbox_inches='tight')
# plt.show()
# plt.close()

matplotlib 曲线图 和 折线图 plt.plot()实例


import matplotlib.pyplot as plt
squares=[1,4,9,6,25]
plt.plot(squares)
plt.savefig('zhexiantu.png',dpi=120,bbox_inches='tight') #dpi 代表像素
#绘制折线图

matplotlib 曲线图 和 折线图 plt.plot()实例

补充知识:matplotlib 画箭头的两种方式

如下所示:


def drawArrow(A, B):
fig = plt.figure(figsize=(5, 5))
print("xasxcsasdc")
ax = fig.add_subplot(121)
# fc: filling color
# ec: edge color

"""第一种方式"""
ax.arrow(A[0], A[1], B[0]-A[0], B[1]-A[1],
   width=0.01,
   length_includes_head=True, # 增加的长度包含箭头部分
   head_width=0.25,
   head_length=1,
   fc='r',
   ec='b')
ax.set_xlim(0, 5)
ax.set_ylim(0, 5)
ax.grid()
ax.set_aspect('equal')

"""第二种方式"""
# 这种方式是在图上做标注时产生的
# Example:
ax = fig.add_subplot(122)
ax.annotate("",
   xy=(B[0], B[1]),
   xytext=(A[0], A[1]),
   # xycoords="figure points",
   arrowprops=dict(arrowstyle="->", color="r"))
ax.set_xlim(0, 5)
ax.set_ylim(0, 5)
ax.grid()
ax.set_aspect('equal') #x轴y轴等比例

#x轴y轴等比例
plt.show()

matplotlib 曲线图 和 折线图 plt.plot()实例

第一种

Axes.arrow(x,y,# 坐标x, y
dx,dy, # 箭头两端横纵坐标距离差
* * kwargs) # 箭头架构和属性设置

Constructor arguments
width 箭头尾巴的线宽
length_includes_head: bool (default: False) # 增加的长度包含箭头部分
head_width: float or None (default: 3*width) # 箭头部分的宽度
head_length: float or None (default: 1.5 * head_width) # 箭头部分的长度
shape: [‘full', ‘left', ‘right'] (default: ‘full') # 箭头是否全部显示 full 完整显示 left左半部 right 右半部
overhang: float (default: 0) # 不知道怎么形容 会改变箭头部分的形状

alpha:透明度
color 箭头的颜色
fc : 箭头尾部的
ec:箭头边界的颜色
fill:箭头部分是否填充颜色
antialiased :False时会让箭头部分带上锯齿
hatch:箭头部分的填充形状

{'/', ‘', ‘|', ‘-', ‘+', ‘x', ‘o', ‘O', ‘.', ‘*'}

第二种

Axes.annotate(s, 标注的信息
xy, 标注点的坐标
*args,
**kwargs)[source]

参数:

s : str 标注的信息
xy : (float, float) 标注点的坐标(箭头的头端点)
xytext : (float, float), 标注的位置(箭头的尾巴)
arrowprops : dict, optional

标注指向的线条的形状:

‘-' 、 ‘->' 、 ‘-[' 、 ‘|-|' 、 ‘-|>' 、 ‘<-' 、 ‘<->' 、 ‘<|-' 、 ‘<|-|>'、 ‘fancy' 、 ‘simple' 、 ‘wedge' 、

来源:https://blog.csdn.net/sinat_38340111/article/details/81022926

标签:matplotlib,曲线图,折线图,plt.plot
0
投稿

猜你喜欢

  • 详解Js模板引擎(TrimPath)

    2024-04-10 13:55:36
  • python os模块在系统管理中的应用

    2022-12-17 04:37:23
  • 2018年最值得一读的互联网书单

    2022-04-13 20:40:37
  • Python读取大型数据文件的6种方式汇总

    2021-06-29 12:19:33
  • asp如何制作一个安全的页面?

    2010-06-29 21:22:00
  • Python使用tablib生成excel文件的简单实现方法

    2021-02-24 09:09:00
  • Python常用的json标准库

    2022-02-26 10:37:52
  • 用Python实现给Word文档盖章

    2021-07-08 21:18:00
  • 在 Python 中使用 7zip 备份文件的操作

    2022-10-01 10:05:56
  • js+html5操作sqlite数据库的方法

    2024-01-23 18:31:05
  • asp读取数据库中数据到数组的类

    2007-09-16 18:19:00
  • 分别用两个函数实现的菜单

    2024-04-19 10:05:36
  • python3 简单实现组合设计模式

    2023-06-12 19:15:50
  • SqlServer 扩展属性的介绍

    2024-01-17 09:32:15
  • python 多线程死锁问题的解决方案

    2023-12-28 03:35:31
  • Python groupby函数图文详解

    2021-10-01 06:17:09
  • 基于Python实现傻瓜式GIF制作工具

    2023-03-13 18:39:44
  • python linecache读取行更新的实现

    2021-01-26 01:33:06
  • Python eval()与exec()函数使用介绍

    2022-03-13 19:24:31
  • Vuejs 组件——props数据传递的实例代码

    2024-05-22 10:43:03
  • asp之家 网络编程 m.aspxhome.com