程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python多段曲線圖例選擇性顯示

編輯:Python

有時候需要繪制多段曲線,還需要繪制多次,可以給曲線繪圖增加句柄,然後把句柄放到變量裡面,然後對保存起來的句柄分別添加圖例。

看圖

看碼 

import matplotlib.pylab as plt
def get_v_value(t):
t2=t*t
return t2
if __name__ == '__main__':
cycllist=[2,3, 4]
pllist=[]
lgtextlist=[]
fig1=plt.figure()
colorlsit = ['red', 'salmon', 'slateblue', 'cyan', 'olive', 'purple', 'bisque']
icolor=0
for cycle in cycllist:
htlist=[[1,10],[11,20],[21,30]]
for thv in htlist:
tmp = [cycle, get_v_value(cycle)]
p1, = plt.plot([thv[0], thv[1]], tmp, color=colorlsit[icolor])
icolor = icolor + 1
labeltext = 'n=' + str(cycle)
pllist.append(p1)
lgtextlist.append(labeltext)
plt.legend(pllist, lgtextlist)
plt.show()


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved