在matplotlib中繪圖標誌有兩種,一種是點標誌(marker),一種是線標誌(linestle),可選的引數如下。
linestyle
'-' solid line style
'--' dashed line style
'-.' dash-dot line style
':' dotted line style
linestyle定義是兩點之間採用什麼方式連線。
marker
'.' point marker
',' pixel marker
'o'circle
marker
'v' ********_down marker
'^' ********_up marker
''>' ********_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
marker定義了點是什麼樣子的。兩者應用的例子如下。
常用的顏色及其十六進製製碼如下。
如果安裝了seaborn擴充套件的話,在字典seaborn.xkcd_rgb中包含了一些擴充套件的顏色。本質上都是對顏色的十六進製製碼起了別名,使用方法如下。
references1.python中matplotlib的顏色及線條控制
2.named colors in matplotlib
3.matplotlib: set markers for individual points on a line
python中matplotlib的顏色及線條控制
參考 plt.subplots 1,1 x range 100 y i 2 for i in x plt.plot x,y,linewidth 1 label test color coral linestyle marker plt.legend loc upper left plt.show 結...
matplotlib顏色和樣式
一 顏色 一 八種內建預設顏色縮寫 b blue g green r red c cyan m magenta y yellow k black w white 二 其他顏色表示方法 顏色的 可以直接在網上搜顏色 即可查詢到 1 灰色陰影 2 html十六進製制 3 rgb元組 import num...
Matplotlib繪製不同顏色的帶箭頭的線
周五的時候計算出來一條線路,但是計算出來的只是類似與 0 10 19 2 0這樣的線路只有寫 的人才能看的懂無法直觀的表達出來,讓其它同事看的不清晰,所以考慮怎樣直觀的把線路圖畫出來。esp 當然是考慮用matplotlib了,匯入相關的庫 import matplotlib.pyplot as p...