使用matplotlib.pyplot中plot()绘制折线图

Posted 我的AI旅程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用matplotlib.pyplot中plot()绘制折线图相关的知识,希望对你有一定的参考价值。

1、函数形式

plt.plot(x, y, format_string, **kwargs) 

x轴数据,y轴数据,format_string控制曲线的格式字串(format_string 由颜色字符,风格字符,和标记字符 )

 

 

  

关于*kwargs,有时候,函数的参数里会有(*args, *kargs),都是可变参数,*args表示无名参数,是一个元组,**kwargs是键值参数,相当于一个字典,比如你输入参数为:(1,2,3,4,k,a=1,b=2,c=3),*args=(1,2,3,4,k),**kwargs={\'a\':\'1,\'b\':2,\'c\':3}

如果同时使用这两个参数,*args要在**kwargs之前,不能是:a=1,b=2,c=3,1,2,3,4,k,这样会出现语法错误提示:SyntaxError:non-keyword arg after keyword arg

*kwargs 还可以用来创建字典哦:

def dicmake(**kwargs):
    return kwargs

2、示例

import numpy as np
import matplotlib.pyplot as plt
import matplotlib as mpl
from scipy.special import gamma
from scipy.special import factorial

mpl.rcParams[\'font.sans-serif\'] = \'SimHei\' #不设置的话,使用matplotlib画出的图中的汉字会是乱码
mpl.rcParams[\'axes.unicode_minus\'] = False

if __name__ == \'__main__\':
    N = 5
    x = np.linspace(0, N, 50)
    y = gamma(x+1)
    print(x)
    print(y)
    plt.figure()
    plt.plot(x, y, \'r-.*\', lw=1, ms=5)
    # plt.plot(x, y, color=\'r\', linestyle=\'-.\', marker=\'*\', lw=1, ms=5) #和上面的语句表达的意思一样
    plt.title(\'阶乘和Gamma函数\')
    plt.show()

 

 注意:以下语句中的‘r-*’表示color=‘r-’, , linestyle=\'-.\', marker=\'*\',以下两个语句表达的意思一样

plt.plot(x, y, \'r-.*\', lw=1, ms=5)
plt.plot(x, y, c=\'r\', linestyle=\'-.\', marker=\'*\', linewidth=1, markersize=5)

 


以上是关于使用matplotlib.pyplot中plot()绘制折线图的主要内容,如果未能解决你的问题,请参考以下文章

Qt会话管理错误与matplotlib.pyplot.plot

Matplotlib.pyplot.plot 绘图

为啥我的 pyplot.plot 数字没有正确保存?

python的绘图工具matplotlib.pyplot

001.matplotlib.pyplot入门

详解 matplotlib.pyplot ,Python 初学者真能看懂