I have a plot where the start of the x and y value should be from 100. And the x axis need to be logarithmic scaled.
I can not invert my x scale starts from 100 and go to 0.
My code:
ax = df.plot(y ='ais_percent', x = 'rtcm_percent', color = 'firebrick')
ax.set_xscale("log")
ax.set_yscale("linear")
ax.invert_yaxis()
ax.invert_xaxis()
ax.set_xlim(1e2,0)
This is the plot that i achive:
The y scale is correct but thye x axis should be opposite.
How can I do this?