-
-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUG: rolling.quantile does not return an interpolated result #16247
Changes from 9 commits
fa971a2
ad8c034
18da308
69b0a48
3acc6fd
b9dc329
b94bda2
79e905f
fa4e036
b99e2be
4080942
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
from .pandas_vb_common import * | ||
import pandas as pd | ||
import numpy as np | ||
|
||
|
||
class DataframeRolling(object): | ||
goal_time = 0.2 | ||
|
||
def setup(self): | ||
self.N = 100000 | ||
self.Ns = 10000 | ||
self.df = pd.DataFrame({'a': np.random.random(self.N)}) | ||
self.dfs = pd.DataFrame({'a': np.random.random(self.Ns)}) | ||
self.wins = 10 | ||
self.winl = 1000 | ||
|
||
def time_rolling_quantile_0(self): | ||
(self.df.rolling(self.wins).quantile(0.0)) | ||
|
||
def time_rolling_quantile_1(self): | ||
(self.df.rolling(self.wins).quantile(1.0)) | ||
|
||
def time_rolling_quantile_median(self): | ||
(self.df.rolling(self.wins).quantile(0.5)) | ||
|
||
def time_rolling_median(self): | ||
(self.df.rolling(self.wins).median()) | ||
|
||
def time_rolling_median(self): | ||
(self.df.rolling(self.wins).mean()) | ||
|
||
def time_rolling_max(self): | ||
(self.df.rolling(self.wins).max()) | ||
|
||
def time_rolling_min(self): | ||
(self.df.rolling(self.wins).min()) | ||
|
||
def time_rolling_std(self): | ||
(self.df.rolling(self.wins).std()) | ||
|
||
def time_rolling_count(self): | ||
(self.df.rolling(self.wins).count()) | ||
|
||
def time_rolling_skew(self): | ||
(self.df.rolling(self.wins).skew()) | ||
|
||
def time_rolling_kurt(self): | ||
(self.df.rolling(self.wins).kurt()) | ||
|
||
def time_rolling_sum(self): | ||
(self.df.rolling(self.wins).sum()) | ||
|
||
def time_rolling_corr(self): | ||
(self.dfs.rolling(self.wins).corr()) | ||
|
||
def time_rolling_cov(self): | ||
(self.dfs.rolling(self.wins).cov()) | ||
|
||
def time_rolling_quantile_0_l(self): | ||
(self.df.rolling(self.winl).quantile(0.0)) | ||
|
||
def time_rolling_quantile_1_l(self): | ||
(self.df.rolling(self.winl).quantile(1.0)) | ||
|
||
def time_rolling_quantile_median_l(self): | ||
(self.df.rolling(self.winl).quantile(0.5)) | ||
|
||
def time_rolling_median_l(self): | ||
(self.df.rolling(self.winl).median()) | ||
|
||
def time_rolling_median_l(self): | ||
(self.df.rolling(self.winl).mean()) | ||
|
||
def time_rolling_max_l(self): | ||
(self.df.rolling(self.winl).max()) | ||
|
||
def time_rolling_min_l(self): | ||
(self.df.rolling(self.winl).min()) | ||
|
||
def time_rolling_std_l(self): | ||
(self.df.rolling(self.wins).std()) | ||
|
||
def time_rolling_count_l(self): | ||
(self.df.rolling(self.wins).count()) | ||
|
||
def time_rolling_skew_l(self): | ||
(self.df.rolling(self.wins).skew()) | ||
|
||
def time_rolling_kurt_l(self): | ||
(self.df.rolling(self.wins).kurt()) | ||
|
||
def time_rolling_sum_l(self): | ||
(self.df.rolling(self.wins).sum()) | ||
|
||
|
||
class SeriesRolling(object): | ||
goal_time = 0.2 | ||
|
||
def setup(self): | ||
self.N = 100000 | ||
self.Ns = 10000 | ||
self.df = pd.DataFrame({'a': np.random.random(self.N)}) | ||
self.dfs = pd.DataFrame({'a': np.random.random(self.Ns)}) | ||
self.sr = self.df.a | ||
self.srs = self.dfs.a | ||
self.wins = 10 | ||
self.winl = 1000 | ||
|
||
def time_rolling_quantile_0(self): | ||
(self.sr.rolling(self.wins).quantile(0.0)) | ||
|
||
def time_rolling_quantile_1(self): | ||
(self.sr.rolling(self.wins).quantile(1.0)) | ||
|
||
def time_rolling_quantile_median(self): | ||
(self.sr.rolling(self.wins).quantile(0.5)) | ||
|
||
def time_rolling_median(self): | ||
(self.sr.rolling(self.wins).median()) | ||
|
||
def time_rolling_median(self): | ||
(self.sr.rolling(self.wins).mean()) | ||
|
||
def time_rolling_max(self): | ||
(self.sr.rolling(self.wins).max()) | ||
|
||
def time_rolling_min(self): | ||
(self.sr.rolling(self.wins).min()) | ||
|
||
def time_rolling_std(self): | ||
(self.sr.rolling(self.wins).std()) | ||
|
||
def time_rolling_count(self): | ||
(self.sr.rolling(self.wins).count()) | ||
|
||
def time_rolling_skew(self): | ||
(self.sr.rolling(self.wins).skew()) | ||
|
||
def time_rolling_kurt(self): | ||
(self.sr.rolling(self.wins).kurt()) | ||
|
||
def time_rolling_sum(self): | ||
(self.sr.rolling(self.wins).sum()) | ||
|
||
def time_rolling_corr(self): | ||
(self.srs.rolling(self.wins).corr()) | ||
|
||
def time_rolling_cov(self): | ||
(self.srs.rolling(self.wins).cov()) | ||
|
||
def time_rolling_quantile_0_l(self): | ||
(self.sr.rolling(self.winl).quantile(0.0)) | ||
|
||
def time_rolling_quantile_1_l(self): | ||
(self.sr.rolling(self.winl).quantile(1.0)) | ||
|
||
def time_rolling_quantile_median_l(self): | ||
(self.sr.rolling(self.winl).quantile(0.5)) | ||
|
||
def time_rolling_median_l(self): | ||
(self.sr.rolling(self.winl).median()) | ||
|
||
def time_rolling_median_l(self): | ||
(self.sr.rolling(self.winl).mean()) | ||
|
||
def time_rolling_max_l(self): | ||
(self.sr.rolling(self.winl).max()) | ||
|
||
def time_rolling_min_l(self): | ||
(self.sr.rolling(self.winl).min()) | ||
|
||
def time_rolling_std_l(self): | ||
(self.sr.rolling(self.wins).std()) | ||
|
||
def time_rolling_count_l(self): | ||
(self.sr.rolling(self.wins).count()) | ||
|
||
def time_rolling_skew_l(self): | ||
(self.sr.rolling(self.wins).skew()) | ||
|
||
def time_rolling_kurt_l(self): | ||
(self.sr.rolling(self.wins).kurt()) | ||
|
||
def time_rolling_sum_l(self): | ||
(self.sr.rolling(self.wins).sum()) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1348,8 +1348,9 @@ def roll_quantile(ndarray[float64_t, cast=True] input, int64_t win, | |
bint is_variable | ||
ndarray[int64_t] start, end | ||
ndarray[double_t] output | ||
double vlow, vhigh | ||
|
||
if quantile < 0.0 or quantile > 1.0: | ||
if quantile <= 0.0 or quantile >= 1.0: | ||
raise ValueError("quantile value {0} not in [0, 1]".format(quantile)) | ||
|
||
# we use the Fixed/Variable Indexer here as the | ||
|
@@ -1391,7 +1392,17 @@ def roll_quantile(ndarray[float64_t, cast=True] input, int64_t win, | |
|
||
if nobs >= minp: | ||
idx = int(quantile * <double>(nobs - 1)) | ||
output[i] = skiplist.get(idx) | ||
|
||
# Single value in skip list | ||
if nobs == 1: | ||
output[i] = skiplist.get(0) | ||
|
||
# Interpolated quantile | ||
else: | ||
vlow = skiplist.get(idx) | ||
vhigh = skiplist.get(idx + 1) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hadn't realized this before: I think there are two things to do here:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I ran some very simple performance tests. The new version is indeed 25% slower. New In [1]: import pandas
In [2]: pandas.__version__
Out[2]: '0.20.0+19.g36db9bdaf'
In [3]: import numpy as np
In [4]: df = pandas.DataFrame({'a': np.random.random(1000000)})
In [5]: %timeit df.a.rolling(10).quantile(0.5)
1 loop, best of 3: 1.78 s per loop
In [6]: %timeit df.a.rolling(10).median()
1 loop, best of 3: 460 ms per loop Old In [1]: import pandas
In [2]: pandas.__version__
Out[2]: '0.20.1'
In [3]: import numpy as np
In [4]: df = pandas.DataFrame({'a': np.random.random(1000000)})
In [5]: %timeit df.a.rolling(10).quantile(0.5)
1 loop, best of 3: 1.4 s per loop
In [6]: %timeit df.a.rolling(10).median()
1 loop, best of 3: 451 ms per loop YMMV, of course. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for doing this! Seeing this, there is a more obvious approach to speeding this in a future PR: use the C implemented skiplist that median uses, instead of the Cython There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @jaimefrio the issue is that for median you are only doing a single calculation. when doing many calculations (like here) a skip list is far faster. The actual impl of the skiplist could be improved a lot though (it has python objects inside it). |
||
output[i] = (vlow + (vhigh - vlow) * | ||
(quantile * (nobs - 1) - idx)) | ||
else: | ||
output[i] = NaN | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1122,8 +1122,19 @@ def test_rolling_quantile(self): | |
def scoreatpercentile(a, per): | ||
values = np.sort(a, axis=0) | ||
|
||
idx = per / 1. * (values.shape[0] - 1) | ||
return values[int(idx)] | ||
idx = int(per / 1. * (values.shape[0] - 1)) | ||
|
||
if idx == values.shape[0] - 1: | ||
retval = values[-1] | ||
|
||
else: | ||
qlow = float(idx) / float(values.shape[0] - 1) | ||
qhig = float(idx + 1) / float(values.shape[0] - 1) | ||
vlow = values[idx] | ||
vhig = values[idx + 1] | ||
retval = vlow + (vhig - vlow) * (per - qlow) / (qhig - qlow) | ||
|
||
return retval | ||
|
||
for q in qs: | ||
|
||
|
@@ -1138,6 +1149,28 @@ def alt(x): | |
|
||
self._check_moment_func(f, alt, name='quantile', quantile=q) | ||
|
||
def test_rolling_quantile_np_percentile(self): | ||
# #9413 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add a 1-liner to both functions explaining what you are testing (e.g. the nature of the bug) |
||
row = 10 | ||
col = 5 | ||
idx = pd.date_range(20100101, periods=row, freq='B') | ||
df = pd.DataFrame(np.random.rand(row * col).reshape((row, -1)), | ||
index=idx) | ||
|
||
df_quantile = df.quantile([0.25, 0.5, 0.75], axis=0) | ||
np_percentile = np.percentile(df, [25, 50, 75], axis=0) | ||
|
||
tm.assert_almost_equal(df_quantile.values, np.array(np_percentile)) | ||
|
||
def test_rolling_quantile_series(self): | ||
# #16211 | ||
arr = np.arange(100) | ||
s = pd.Series(arr) | ||
q1 = s.quantile(0.1) | ||
q2 = s.rolling(100).quantile(0.1).iloc[-1] | ||
|
||
tm.assert_almost_equal(q1, q2) | ||
|
||
def test_rolling_quantile_param(self): | ||
ser = Series([0.0, .1, .5, .9, 1.0]) | ||
|
||
|
@@ -3558,7 +3591,7 @@ def test_ragged_quantile(self): | |
|
||
result = df.rolling(window='2s', min_periods=1).quantile(0.5) | ||
expected = df.copy() | ||
expected['B'] = [0.0, 1, 1.0, 3.0, 3.0] | ||
expected['B'] = [0.0, 1, 1.5, 3.0, 3.5] | ||
tm.assert_frame_equal(result, expected) | ||
|
||
def test_ragged_std(self): | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.rolling(...).quantile()
and use :func:Series.quantile
and :func:DataFrame.quantile
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add the issue number #9413 and #16211