0710d3a704994e5862a3b037bd91213bae1d9f10,pmdarima/arima/stationarity.py,KPSSTest,is_stationary,#KPSSTest#Any#,127
Before Change
scalar, denom = 10, 14
if self.lshort:
scalar, denom = 3, 13
l_ = int(np.trunc(scalar * np.sqrt(n) / denom))
// compute the C subroutine
s2 = C_tseries_pp_sum(e, n, l_, s2)
After Change
// scalar, denom = 3, 13
// l_ = int(np.trunc(scalar * np.sqrt(n) / denom))
if self.lshort:
l_ = int(np.trunc(4 * (n / 100) ** 0.25))
else:
l_ = int(np.trunc(12 * (n / 100) ** 0.25))
// compute the C subroutine
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: tgsmith61591/pmdarima
Commit Name: 0710d3a704994e5862a3b037bd91213bae1d9f10
Time: 2018-12-17
Author: tgsmith61591@gmail.com
File Name: pmdarima/arima/stationarity.py
Class Name: KPSSTest
Method Name: is_stationary
Project Name: chainer/chainercv
Commit Name: fe9b27b4e279a45a4aa16c3b289c4e600384b4da
Time: 2017-09-29
Author: yuyuniitani@gmail.com
File Name: tests/transforms_tests/image_tests/test_random_sized_crop.py
Class Name: TestRandomSizedCrop
Method Name: test_random_sized_crop
Project Name: chainer/chainercv
Commit Name: f922a9824d2ecd781666a594d941f4a60d9a79a1
Time: 2017-09-28
Author: yuyuniitani@gmail.com
File Name: tests/transforms_tests/image_tests/test_random_sized_crop.py
Class Name: TestRandomSizedCrop
Method Name: test_random_sized_crop