fig=plt.figure()
ax=fig.add_axes([0,0,1,1])
ax.set_xlim([0,100])
ax.set_ylim([0,200])
ax.plot(x,y)
This returns the following image with y coordinates having an interval difference of 25
But instead, I need my output to have why coordinates with an interval difference of 50. something like