成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

如何使用matplotlib中的折線圖方法plot()

本篇內容介紹了“如何使用matplotlib中的折線圖方法plot()”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

網站建設公司,為您提供網站建設,網站制作,網頁設計及定制網站建設服務,專注于企業(yè)網站建設,高端網頁制作,對成都茶藝設計等多個行業(yè)擁有豐富的網站建設經驗的網站建設公司。專業(yè)網站設計,網站優(yōu)化推廣哪家好,專業(yè)成都網站推廣優(yōu)化,H5建站,響應式網站。

plt.plot()的定義及調用

定義:

  •  plt.plot(*args, scalex=True, scaley=True, data=None, **kwargs)

調用:

  •  plot([x], y, [fmt], *, data=None, **kwargs)

  •  plot([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs)

位置參數:

  •  [x], y, [fmt]

關鍵字傳參:

  •  *后面的參數

x序列的不同類型

文本型的x序列

# data  X = [8,3,5,'t'] # 會按順序【0,1,2,3】被定位在x軸的刻度上  Y = [1,2,3,4]  plt.plot(X,Y,marker = 'o',c='g')  ax = plt.gca()  print('x軸刻度:',plt.xticks())  #list  xticklabels_lst = ax.get_xticklabels()  print('-'*70)

x軸刻度:([0, 1, 2, 3], <a list of 4 Text xticklabel objects>)

----------------------------------------------------------------------

如何使用matplotlib中的折線圖方法plot()

print('x軸刻度標簽:',list(xticklabels_lst))  #是個文本標簽

x軸刻度標簽:[Text(0, 0, '8'), Text(1, 0, '3'), Text(2, 0, '5'), Text(3, 0, 't')]

數字型的x序列

# data  X = [8,3,5,1] # 會按數字【8,3,5,1】被定位在x軸的刻度上  Y = [1,2,3,4]  plt.plot(X,Y,marker = 'o',c='g')  ax = plt.gca()  print('x軸刻度:',plt.xticks()) # array  xticklabels_lst = ax.get_xticklabels()  print('-'*70)

x軸刻度:(array([0., 1., 2., 3., 4., 5., 6., 7., 8., 9.]), <a list of 10 Text xticklabel objects>)

----------------------------------------------------------------------

如何使用matplotlib中的折線圖方法plot()

print('x軸刻度標簽:',list(xticklabels_lst))  #是個按序號排列的文本標簽

x軸刻度標簽:[Text(0.0, 0, '0'), Text(1.0, 0, '1'), Text(2.0, 0, '2'), Text(3.0, 0, '3'), Text(4.0, 0, '4'), Text(5.0, 0, '5'), Text(6.0, 0, '6'), Text(7.0, 0, '7'), Text(8.0, 0, '8'), Text(9.0, 0, '9')]

2種類型-2條線

# data  X1 = [8,3,5,'t']  X2 = [8,3,5,1]  Y = [1,2,3,4]  plt.plot(X2,Y,marker = 'o',c='r')  plt.plot(X1,Y,marker = 'o',c='g')  ax = plt.gca()  print('x軸刻度:',plt.xticks())  xticklabels_lst = ax.get_xticklabels()  print('-'*70)

x軸刻度:([0, 1, 2, 3], <a list of 4 Text xticklabel objects>)

----------------------------------------------------------------------

如何使用matplotlib中的折線圖方法plot()

print('x軸刻度標簽:',list(xticklabels_lst))

x軸刻度標簽:[Text(0, 0, '8'), Text(1, 0, '3'), Text(2, 0, '5'), Text(3, 0, 't')]

提供不同數量的位置參數

幾種方式的調用

無參數

#返回一個空列表  plt.plot()

[]

如何使用matplotlib中的折線圖方法plot()

plot([x], y, [fmt], *, data=None, **kwargs) plot([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs)

1個參數

#提供一個數(點)  plt.plot(4.5,marker='o')

[<matplotlib.lines.Line2D at 0x7f6f0352f978>]

如何使用matplotlib中的折線圖方法plot()

#提供一個數字序列  plt.plot([4.5,2,3],marker='o')

[<matplotlib.lines.Line2D at 0x7f6f0350d438>]

如何使用matplotlib中的折線圖方法plot()

2個參數

自動解析位置參數的原則

(x,y)形式

# x/y 為序列  plt.plot([2,1,3],[0.5,2,2.5],marker='o')

[<matplotlib.lines.Line2D at 0x7f6f034735c0>]

如何使用matplotlib中的折線圖方法plot()

# x/y 為標量  plt.plot(2,['z'],marker = 'o')

[<matplotlib.lines.Line2D at 0x7f6f03461b38>]

如何使用matplotlib中的折線圖方法plot()

(y,fmt)形式

# plt.plot(2,'z',marker = 'o') #Unrecognized character z in format string
# y 為標量   plt.plot(2,'r',marker = 'o')

[<matplotlib.lines.Line2D at 0x7f6f033b7cf8>]

如何使用matplotlib中的折線圖方法plot()

# y 為序列  plt.plot([2,1,3],'r--*')

[<matplotlib.lines.Line2D at 0x7f6f033a1cf8>]

如何使用matplotlib中的折線圖方法plot()

3個參數

([x],y,[fmt])形式

plt.plot([2,1,3],[0.5,2,2.5],'p--g',  #          marker='o'           markersize = 15          )

[<matplotlib.lines.Line2D at 0x7f6f0331e048>]

如何使用matplotlib中的折線圖方法plot()

# fmt不寫,或者&lsquo;&rsquo;,則使用默認樣式  plt.plot([2,1,3],[0.5,2,2.5],'',  #          marker='o'           markersize = 15          )

[<matplotlib.lines.Line2D at 0x7f6f03289390>]

如何使用matplotlib中的折線圖方法plot()

繪圖Line2D

僅畫線:繪圖的默認情況

默認樣式:藍色的【線】【無標記】

# marker = None 表示不做設置  plt.plot([2,2.5,1])

[<matplotlib.lines.Line2D at 0x7f6f031f86a0>]

如何使用matplotlib中的折線圖方法plot()

僅畫標記

plt.plot([2,2.5,1],'o')

[<matplotlib.lines.Line2D at 0x7f6f03afcba8>]

如何使用matplotlib中的折線圖方法plot()

畫線+標記

plt.plot([2,2.5,1],'o-')

[<matplotlib.lines.Line2D at 0x7f6f031d62e8>]

如何使用matplotlib中的折線圖方法plot()

plt.plot([2,1,3],'bo--')

[<matplotlib.lines.Line2D at 0x7f6f0317b128>]

如何使用matplotlib中的折線圖方法plot()

fmt的組合順序隨意的?

6圖合一及結論

# 6種組合  # [color][marker][line],3種任意組合為6種可能  # b :藍色  # o: 圓圈標記  # --:虛線  fmt = ['bo--','b--o','ob--','o--b','--bo','--ob']  for i in range(len(fmt)):      plt.subplot(2,3,i+1)      plt.plot([2,1,3],fmt[i])   # 結論:[color][marker][line],每個都是可選的,每個屬性可以選擇寫或者不寫  # 而且與組合中它們所在的位置順序無關

如何使用matplotlib中的折線圖方法plot()

fmt支持的【線】-line

Line Styles

==== character description ====

'-' solid line style '--' dashed line style '-.' dash-dot line style ':' dotted line style

fmt支持的【標記】-marker

Markers

==== character description ====

'.' point marker ',' pixel marker \\\'o\\\' circle marker 'v' triangle_down marker '^' triangle_up marker '<' triangle_left marker '>' triangle_right marker '1' tri_down marker '2' tri_up marker '3' tri_left marker '4' tri_right marker 's\\\' square marker 'p' pentagon marker '*' star marker 'h' hexagon1 marker 'H' hexagon2 marker '+' plus marker 'x' x marker 'D' diamond marker 'd' thin_diamond marker '|' vline marker '_' hline marker

fmt支持的【顏色】-color

Colors

The supported color abbreviations are the single letter codes

==== character color ====

'b' blue 'g' green 'r' red 'c' cyan 'm' magenta 'y' yellow 'k' black 'w' white

所有樣式:標記、線、顏色參考大全

鏈接:https://www.kesci.com/home/project/5ea4e5da105d91002d506ac6

樣式屬性

線條的屬性

# 包含:(顏色除外)  # 線的樣式、線的寬度  # linestyle or ls: {'-', '--', '-.', ':', '', }  # linewidth or lw: float  ls_lst = ['-', '--', '-.', ':',]   lw_lst = [1,3,5,7]  for i in range(len(ls_lst)):      plt.plot([1,2,3,4],[i+1]*4,ls_lst[i],lw = lw_lst[i])

如何使用matplotlib中的折線圖方法plot()

標記的屬性

# 包含:  '''  marker: marker style  #邊框(顏色及邊框粗細)  markeredgecolor or mec: color  markeredgewidth or mew: float  #面顏色  markerfacecolor or mfc: color  markerfacecoloralt or mfcalt: color  #備用標記顏色  #標記的大小  markersize or ms: float  markevery: None or int or (int, int) or slice or List[int] or float or (float, float)  '''  # linestyle = None 表示不做設置,以默認值方式  # linestyle = ''  linestyle = 'none' 表示無格式,無線條  plt.plot([4,2,1,3],linestyle = 'none',            marker = 'o',           markersize = 30,           # edge           markeredgecolor = 'r',           markeredgewidth = 5,           # face            markerfacecolor = 'g',  #          markerfacecolor = 'none',  #          markerfacecolor = None,          )

[<matplotlib.lines.Line2D at 0x7f6f02f085c0>]

如何使用matplotlib中的折線圖方法plot()

綜合:帶有空心圓標記的線條圖

'''  標記點是覆蓋在線條的上面,位于上層  圖層層次:[top]  spines > marker > line > backgroud  [bottom]  spines:軸的4個邊框  spines 將線條圖圍在里面  '''  plt.plot([1,5,3,4],            marker = 'o',           markersize = 20,           # edge           markeredgecolor = 'r',           markeredgewidth = 5,           # face            markerfacecolor = 'w',    # 白色,與背景色相同,把線條覆蓋著,營造空心的視覺效果  #          markerfacecolor = 'none', # 無色,透明,會看到線條  #          markerfacecolor = None, # 不設置,默認顏色          )  # markerfacecolor = ' ', # 無法識別  # markerfacecolor = '', # 無法識別

[<matplotlib.lines.Line2D at 0x7f6f02e6e470>]

如何使用matplotlib中的折線圖方法plot()

data關鍵字的使用

字典數據

#字典數據  d = {'name':list('abcd'),'age':[22,20,18,27]}  plt.plot('name','age',ddata = d)

[<matplotlib.lines.Line2D at 0x7f6f02e52e48>]

如何使用matplotlib中的折線圖方法plot()

DataFrame數據

#DataFrame數據  d = {'name':list('abcd'),'age':[22,20,18,27]}  df = pd.DataFrame(d) df
 nameage
0a22
1b20
2c18
3d27
plt.plot('name','age',data = df)

[<matplotlib.lines.Line2D at 0x7f6f02d7a940>]

如何使用matplotlib中的折線圖方法plot()

“如何使用matplotlib中的折線圖方法plot()”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注創(chuàng)新互聯(lián)網站,小編將為大家輸出更多高質量的實用文章!

文章題目:如何使用matplotlib中的折線圖方法plot()
網頁路徑:http://jinyejixie.com/article12/igogdc.html

成都網站建設公司_創(chuàng)新互聯(lián),為您提供服務器托管、商城網站、用戶體驗、網頁設計公司、營銷型網站建設定制網站

廣告

聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

外貿網站建設
北海市| 瑞昌市| 清远市| 普兰县| 南召县| 双柏县| 射洪县| 阿荣旗| 怀柔区| 滕州市| 六枝特区| 娱乐| 梨树县| 桐乡市| 宝山区| 太仆寺旗| 双峰县| 凭祥市| 修水县| 修水县| 鸡西市| 澎湖县| 南丹县| 南康市| 阳泉市| 永川市| 赣榆县| 平罗县| 浦东新区| 阜城县| 鲁山县| 苗栗县| 苏州市| 富民县| 沿河| 许昌市| 西乡县| 庐江县| 正阳县| 丁青县| 唐山市|