Results 637 comments of Antony Lee

OK, let's close this then. Thanks for the API suggestions and discussion.

I'll try and sort out if there's anything left to do and if so open separate PRs for them. I guess this can be closed, in the meantime.

OK, I think the only remaining work is #24723, everything else has been handled.

--nobuild should now work as of master.

Tried with tkagg, qt4agg and qt5agg, mpl 2.0b2 on linux. Run `plot([0, 1]); tight_layout(); datacursor()` and click close to the (1, 1) point: ![figure_1](https://cloud.githubusercontent.com/assets/1322974/16887880/7ed2c0d4-4a91-11e6-9d20-b38ecb9c22ed.png)

IIRC, your parenthesized note is exactly why I decided to directly call `pdf` myself (so that I can perform the normalization).

I want to plot the fitted pdf and have it (more or less) overlaid on top of the empirical pdf, i.e. the fitted pdf should be plotted normalized to the...

I'd rather fix the pdf/cdf/ccdf calculations themselves. Silently dropping data feels... wrong, doesn't it?

I fully agree with you on this point, but in my opinion this means that `pdf` should return zero for arguments below `xmin`, not drop them.

How would the last option (`plt.plot(results.power_law.cdf(xs))`) work? It won't be correctly aligned in `x`. The first approach (`plot_cdf`) would need scaling, which is a separate issue. I don't actually really...