📜  matplotlib despine - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:17.597000             🧑  作者: Mango

代码示例1
# Hide the right and top spines
ax.spines['right'].set_visible(False)
ax.spines['top'].set_visible(False)
# Only show ticks on the left and bottom spines
ax.yaxis.set_ticks_position('left')
ax.xaxis.set_ticks_position('bottom')

plt.show()