I use matplotlib 0.99.
I am not able to change width of border of subplot, how can I do it?
subplot
Code is as follows:
fig = plt.figur
You want to adjust the border line size? You need to use ax.spines[side].set_linewidth(size).
So something like:
[i.set_linewidth(0.1) for i in ax.spines.itervalues()]