python 作图中的图标题title 和坐标轴标签的axes的调整

这里主要是调整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()的格式去设定样式,最后的()里面调用调色板模块
python 作图中的图标题title 和坐标轴标签的axes的调整_第1张图片

你可能感兴趣的:(python,学习笔记)