Python畫曲線圖(論文,報告等常用)

來源:互聯網
上載者:User

標籤:python   畫圖   

<pre name="code" class="python">在很多時候,例如寫論文,例如寫報告,例如做ppt,都需要花很多很多曲線圖,讓人家信服畢竟資料視覺效果是人的本能。假如讀者您很不幸,像我一樣不會用matlab之類的東西畫圖或者沒辦法用matlab畫圖,那麼可以稍微關注一下python,因為python裡面有很強大的庫matplotlib,讓使用者直接用terminal就可以做大部分matlab畫圖能做的事情。matplotlib的安裝,可以先安裝pip然後sudo pip install matplotlib假如,現在任務是,從三個文字文件裡面讀入資料,然後畫出曲線圖然後比較,那麼就可以像如下代碼一樣做。。


<pre name="code" class="python">#!/usr/bin/env pythonimport pylab as plimport numpy as npfilename1 = 'NUMBERCUTOUT0'filename2 = 'NUMBERCUTOUT1'filename3 = 'NUMBERCUTOUT2'file1 = open(filename1,'r')file2 = open(filename2,'r')file3 = open(filename3,'r')value1 = []value2 = []value3 = []for word in file1:value1.append(word[:-1])for word in file2:value2.append(word[:-1])for word in file3:value3.append(word[:-1])length = len(value1)X = np.linspace(0,length,length,endpoint=True)fig = pl.figure(1)pl.plot(X,value1, color ='blue', linewidth = 1.0, linestyle =':',label='Straight-forward Structure')pl.plot(X,value2, color ='green',linewidth=1.0, linestyle='-', label='Single-branch Structure')pl.plot(X,value3, color ='red', linewidth=1.0, linestyle='--',label='Double-branch Structure')pl.legend(loc='upper right')pl.title('SingleBranch(Blue) DoubleBranch(Green) TribleBranch(Red)')pl.show()



Python畫曲線圖(論文,報告等常用)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.