# [X],[Y] 表x,y 座標
# marker 在圖上顯示的文字
plt.scatter([X], [Y], marker="x", color='red', label='setosa') # 畫點
plt.plot([X], [Y], marker="x", color='red', label='setosa') # 畫線
plt.contourf(xx1, xx2, z, alpha=0.4, cmap=cmap) # 畫等高圖,(xx1,xx2)為座標,z為高度,alpha為透明度,cmap為顏色陣列
plt.axvline(0.0, color='k') # 畫重直格線 x=0.0
plt.axhline([0.0, 0.5, 1.0], color='k') # 畫水平格線
plt.axhspan(y_min,y_max,facecolor='',alpha=1.0,ls='dotted')# y_min ~ y_max 填滿水平線
# ls =[‘solid’ | ‘dashed’, ‘dashdot’, ‘dotted’ | (offset, on-off-dash-seq) | '-' | '--' | '-.' | ':' | 'None' | ' ' | '']
# color
# 'red' or 'r' Red [1 0 0]
# 'green' or 'g' Green [0 1 0]
# 'blue' or 'b' Blue [0 0 1]
# 'yellow' or 'y' Yellow [1 1 0]
# 'magenta' or 'm' Magenta [1 0 1]
# 'cyan' or 'c' Cyan [0 1 1]
# 'white' or 'w' White [1 1 1]
# 'black' or 'k' Black [0 0 0]
plt.yticks([0.0, , 0.5, 1.0]) # 畫 y 軸刻度
plt.ylim(0.0, 1.0) # 設定 y 軸最小/最大刻度
fig = plt.figure(num = 'test', figsize = (10, 10)) # 設定圖案標題 (like : program name on top of program screen),大小(英寸)
ax = plt.subplot(111) # 同plt.subplot(1, 1, 1) ==> (row, col, plot index)
# 畫長條圖
plt.bar(X,Y,color='lightblue',align='center')
# subplot
plt.subplot(h,w,number)
(3,2,1) (3,2,2)
(3,2,3) (3,2,4)
(3,2,4) (3,2,6)