BUG: Groupby.quantile segfaults for quantile > 1 · Issue #27470 · pandas-dev/pandas (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

@ghost

Description

@ghost

Adding tests for #27467 surfaced some bugs:

from pandas import * df = DataFrame(dict(a=[0, 0, 0, 1, 1, 1], b=range(6))) g = df.groupby(np.repeat([0,1], 3))

ok

g.quantile(50)

quantile accepts floats in [0,1] or arrays of floats. It appears not to validate the range though.