使用 python Matplotlib 庫繪圖

來源:互聯網
上載者:User

 Matplotlib的安裝可以參見 官網連結 http://matplotlib.org/users/installing.html

下面總結步驟如下:

windows 平台上 下載.exe格式 直接安裝。

1,python下載安裝 。

2,安裝你所需要版本(這個要根據步驟1的python版本)的Matplotlib,。

下面安裝Matplotlib 依賴的庫

3, 對於標準版的Python來說,要使用Matplotlib,還需要安裝numpy模組,其。

4, msvcp71.dll, 在某些系統上,你可能還需要下載msvcp71.dll庫。下載

     這個檔案,解壓後把它拖到c:\windows\system32目錄中。

5, 運行一個簡單的程式例子:

 

import matplotlib.pyplot as pltplt.plot([1,2,3])plt.ylabel('some numbers')plt.show()

發現出現了下面的錯誤:

raise ImportError("matplotlib requires dateutil")
ImportError: matplotlib requires dateutil

這個需要dateutil,你可以到這裡下載安裝。

把dateutil 安裝完後又出現如下錯誤:

raise ImportError("matplotlib requires pyparsing")
ImportError: matplotlib requires pyparsing

需要 pyparsing  到這裡下載安裝。

完成以上步驟,運行上面的例子就可以顯示我們的映像,如下所示。



在程式安裝過程中如果遇到需要安裝的一些依賴包,你可以到這裡尋找,確實是個好資源。

可以根據所畫圖形的需要 在下面的連結裡選擇相應的圖形 進行修改,繪出自己所需的映像。

example: http://matplotlib.org/examples/index.html,  gallery:http://matplotlib.org/gallery.html

注意繪圖時中文的解決方案, 在.py檔案頭部加上如下內容:

  1. # -*- coding: utf-8 -*-   
  2. from pylab import *  
  3. mpl.rcParams['font.sans-serif'] = ['SimHei'] #指定預設字型  
  4. mpl.rcParams['axes.unicode_minus'] = False #解決儲存映像是負號'-'顯示為方塊的問題  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.