Hide upper and right frame in matplotlib figure
January 2nd, 2014 by Lawrence David
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.get_xaxis().tick_bottom()
ax.get_yaxis().tick_left()
Thanks StackOverflow!
January 2nd, 2014 by Lawrence David
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.get_xaxis().tick_bottom()
ax.get_yaxis().tick_left()
Thanks StackOverflow!