#1 windows安裝html
Python安裝文件集成了matplotlib,只是注意安裝的時候,選項中要把tcl/tck勾上,否則運行的時候會報錯。windows
#2 導入 import matplotlib.pyplot as pltapi
教程標題 | 主要內容 |
---|---|
關於Markdown | 簡介Markdown,Markdown的優缺點 |
Markdown基礎 | Markdown的基本語法,格式化文本、代碼、列表、連接和圖片、分割線、轉義符等 |
Markdown表格和公式 | Markdown的擴展語法,表格、公式 |
#3 畫點(plot)code
plot方法通常是畫線,可是若是隻給一個點的座標,也能夠畫點。(pyplot彷佛把點稱爲marker) 好比:plt.plot(20, 30, "+")
plot api文檔 除了座標以外還必須指定點的形狀不然看不到畫的點。
plot方法的調用有兩種形式:
1 plt.plot(x, y, "內置形狀|顏色") 2 plt.plot(x, y, color='red', marker='o', markerfacecolor='blue', markersize=12) color和makerfacecolor指定一個就好了,若是二者同時出現,已後者爲準。htm
內置形狀以下表:教程
marker | description |
---|---|
」.」 | point |
」,」 | pixel |
「o」 | circle |
「v」 | triangle_down |
「^」 | triangle_up |
「<」 | triangle_left |
「>」 | triangle_right |
「1」 | tri_down |
「2」 | tri_up |
「3」 | tri_left |
「4」 | tri_right |
「8」 | octagon |
「s」 | square |
「p」 | pentagon |
「*」 | star |
「h」 | hexagon1 |
「H」 | hexagon2 |
「+」 | plus |
「x」 | x |
「D」 | diamond |
「d」 | thin_diamond |
「 | 」 |
「_」 | hline |
完整的內容能夠參考官方文檔
內置顏色:
character | color ---- | ---- ‘b’| blue ‘g’| green ‘r’| red ‘c’| cyan ‘m’| magenta ‘y’| yellow ‘k’| black ‘w’| white圖片
除了內置顏色,根據plot文檔,還能夠有其餘方式:
including full names ('green'), hex strings ('#008000'), RGB or RGBA tuples ((0,1,0,1)) or grayscale intensities as a string ('0.8')ip