python 作圖中的圖示題title 和座標軸標籤的axes的調整
阿新 • • 發佈:2019-02-19
這裡主要是調整title和座標軸標籤的樣式。要注意抓住設定的套路和規律,不要被複雜的外表所迷惑。
import matplotlib.pyplot as plt import numpy as np from matplotlib import patheffects import numpy as np %matplotlib inline data=np.random.rand(70) fontsize=36 plt.plot(data,color='indigo') title_text_obj=plt.title('This is title',fontsize=fontsize,verticalalignment='bottom') title_text_obj.set_path_effects([patheffects.withSimplePatchShadow()]) #看起來很複雜似得,其實就是plt.title().set_path_effects()的格式 offset_xy=(1,-1) rgbRed=(1,0,0) alpha=0.8 pe=patheffects.withSimplePatchShadow((1,-1),rgbRed,0.8) #上面括號裡的第一組是偏移量,中間的表示顏色,最後面的是透明度,這裡相當於定義了調色盤模組。 xlabel_obj=plt.xlabel('x_label',fontsize=14,alpha=0.5) xlabel_obj.set_path_effects([pe])#無非是用了plt.xlabel().set_path_effects()的格式 ylabel_obj=plt.ylabel('This is y label',fontsize=14,alpha=0.5) ylabel_obj.set_path_effects([pe]) #上面同理無非是用了plt.ylabel().set_path_effects()的格式去設定樣式,最後的()裡面呼叫調色盤模組