python - two y axis with same scale -
I did a histogram with two y-axis and two datasets, but I did not set the two y-axis scales
In this example, there will be two aspects of this idea from 0 to 25,000.
Do anyone have the idea of this matter?
Have you tried something like this:
. .. ax2 = ax1.twiny () a, b = 0,25000 axis 1.set_illim (a, b) ax2.set_ylim (a, b)
Comments
Post a Comment