How to matplotlib draw figure with different spacing?
specifically, how to draw this one?
How to matplotlib draw figure with different spacing?
specifically, how to draw this one?
The plot shown in the question is plotted on a 'logit'
scale.
ax.set_xscale('logit')
ax.set_yscale('logit')
You may refer to the scales example.