Forgive my terminology, I'm not an expert at statistics or plotting!
Using Pandas, I am attempting to plot quantile data that is bucketed up to "5 9s". That is, for a given DataFrame 'df' that has a series 'foo' of unevenly distributed integer values:
q = df['foo'].quantile([.1, .2, .3, .4, .5, .6, .7, .8, .9, .99, .999, .9999, .99999, 1])
q.plot()
Results in a plot where the x-axis intervals between 0.9 and 1.0 are compressed:
Is there a way to evenly space the quantile buckets on the x-axis ?
Thanks!
Taking lmo's advice, here's the solution that works for me.
For a given dataframe 'df' that has a series 'A':