-1

How to matplotlib draw figure with different spacing?

specifically, how to draw this one?

image

ImportanceOfBeingErnest
  • 321,279
  • 53
  • 665
  • 712

1 Answers1

0

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.

ImportanceOfBeingErnest
  • 321,279
  • 53
  • 665
  • 712