zoukankan      html  css  js  c++  java
  • Gallery——Matplotlib

    • Matplotlib 是 python 最著名的绘图库。它提供了一整套和 MATLIB 相似的命令API,十分适合交互式地进行制图。而且也可以方便的将它作为绘图控件,嵌入GUI应用程序中。
    • Matplotlib.pyplot 是绘制各类可视化图形的命令字库,相当于快捷方式。
    • Matplotlib 文档相当完备,并且Gallery页面中有上百幅缩略图,打开之后都有源代码。因此如果你需要绘制某种类型的图,只需要在这个页面中浏览、复制、粘贴一下,基本上通过修改数据和设置都能搞定。

    选取Gallery中一幅略缩图示例:

    import numpy as np
    import matplotlib.pyplot as plt
    
    
    labels = ['G1', 'G2', 'G3', 'G4', 'G5']
    men_means = [20, 35, 30, 35, 27]
    women_means = [25, 32, 34, 20, 25]
    men_std = [2, 3, 4, 1, 2]
    women_std = [3, 5, 2, 3, 3]
    width = 0.35       # the width of the bars: can also be len(x) sequence
    
    fig, ax = plt.subplots()
    
    ax.bar(labels, men_means, width, yerr=men_std, label='Men')
    ax.bar(labels, women_means, width, yerr=women_std, bottom=men_means,
           label='Women')
    
    ax.set_ylabel('Scores')
    ax.set_title('Scores by group and gender')
    ax.legend()
    
    plt.show()
    
    

  • 相关阅读:
    struts.xml文件中package元素的各大属性讲解
    strus2 struts.xml详解
    既使用maven编译,又使用lib下的Jar包
    Maven项目同时使用lib下的Jar包
    PreparedStatement ResultSet
    SearchBySql
    java 生成GUID
    获取当前时间的字符串
    C#字符串比较
    浮点数比较大小
  • 原文地址:https://www.cnblogs.com/Noturns/p/13341434.html
Copyright © 2011-2022 走看看