I want something similar to the above image where the chart is a log distribution of the data but the x-axis ticks are original data values spaced accordingly.
This is what I have currently.
I tried ideas here. But they all seem to be manually setting tick values, I want the tick values to be derived from the original column values.
My current code is very basic:
sns.histplot(data=df, x="MPG",log_scale=True)