chunweiyuan
chunweiyuan
Creates `quantile()` function that allows `weights` input. Fixes #6326, #8935 --- The following are plotted the same way as the graphs [at the bottom of the `np.percentile` docs](http://www.numpy.org/devdocs/reference/generated/numpy.percentile.html), but with...
On my own fork I customized the code a little for our own aesthetic needs: https://github.com/chunweiyuan/sqlalchemy_schemadisplay/blob/foreign_key_edges/sqlalchemy_schemadisplay.py#L171-L203 However, it does feel like we should avoid this type of hard-coding and allow...
The logic behind setting center=True confuses me. Say window size = 3. The default behavior (center=False) sets the window to go from i-2 to i, so I would've expected center=True...