美文网首页
pyplot 绘图

pyplot 绘图

作者: 137c | 来源:发表于2019-10-15 16:04 被阅读0次

    pyplot 中文文档:https://wizardforcel.gitbooks.io/matplotlib-user-guide/3.1.html

    绘制直方图

    a=[1,2,3,4,5]
    plt.bar([5,4,3,2,1],a)
    Out[22]: <BarContainer object of 5 artists>
    plt.show()
    
    image.png

    绘制散点图

    plt.scatter(x,y)

    绘制曲线图

    plt.plot(x)

    绘制柱状图

    plt.bar(x)

    相关文章

      网友评论

          本文标题:pyplot 绘图

          本文链接:https://www.haomeiwen.com/subject/qtpsmctx.html