Matplotlib Tips
细节技巧
- 去除坐标轴框线
fig, ax=plt.subplots()
# 去掉框线
ax.spines['top'].set_visible(True)
ax.spines['right'].set_visible(False)
ax.spines['bottom'].set_visible(True)
ax.spines['left'].set_visible(False)
- 如图,去除左右侧框线(不包括刻度定位点,即框线突出来的点),下侧框线保留
- 去除刻度定位点
# x 刻度线参数:[ 'top' | 'bottom' | 'both' | 'default' | 'none' ]
ax.xaxis.set_ticks_position('bottom'