2012-03-17 164 views

回答

37

只需將棘刺(和/或滴答聲)設置爲不可見。

E.g.

import matplotlib.pyplot as plt 

fig, ax = plt.subplots() 

ax.spines['right'].set_visible(False) 
ax.spines['top'].set_visible(False) 

plt.show() 

enter image description here

如果你想隱藏在頂部的蜱離開爲好,只是做:

ax.xaxis.set_ticks_position('bottom') 
ax.yaxis.set_ticks_position('left') 

enter image description here