|
14 | 14 | method_blacklist = {
|
15 | 15 | 'object': {'median', 'prod', 'sem', 'cumsum', 'sum', 'cummin', 'mean',
|
16 | 16 | 'max', 'skew', 'cumprod', 'cummax', 'rank', 'pct_change', 'min',
|
17 |
| - 'var', 'mad', 'describe', 'std'}, |
| 17 | + 'var', 'mad', 'describe', 'std', 'quantile'}, |
18 | 18 | 'datetime': {'median', 'prod', 'sem', 'cumsum', 'sum', 'mean', 'skew',
|
19 | 19 | 'cumprod', 'cummax', 'pct_change', 'var', 'mad', 'describe',
|
20 | 20 | 'std'}
|
@@ -316,8 +316,9 @@ class GroupByMethods(object):
|
316 | 316 | ['all', 'any', 'bfill', 'count', 'cumcount', 'cummax', 'cummin',
|
317 | 317 | 'cumprod', 'cumsum', 'describe', 'ffill', 'first', 'head',
|
318 | 318 | 'last', 'mad', 'max', 'min', 'median', 'mean', 'nunique',
|
319 |
| - 'pct_change', 'prod', 'rank', 'sem', 'shift', 'size', 'skew', |
320 |
| - 'std', 'sum', 'tail', 'unique', 'value_counts', 'var'], |
| 319 | + 'pct_change', 'prod', 'quantile', 'rank', 'sem', 'shift', |
| 320 | + 'size', 'skew', 'std', 'sum', 'tail', 'unique', 'value_counts', |
| 321 | + 'var'], |
321 | 322 | ['direct', 'transformation']]
|
322 | 323 |
|
323 | 324 | def setup(self, dtype, method, application):
|
|
0 commit comments