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
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
s2 = C_tseries_pp_sum(e, n, l_, s2)
stat = eta / s2
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 6
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: SINGROUP/dscribe
Commit Name: f6cb0794403cfd6c2af3f55aa2c2fff6fa14cedc
Time: 2019-06-09
Author: lauri.himanen@aalto.fi
File Name: dscribe/descriptors/lmbtr.py
Class Name: LMBTR
Method Name: get_k3_convolution
Project Name: Calamari-OCR/calamari
Commit Name: 8d0d0c7a6db3904f0222cbe058388a92cf21a548
Time: 2021-02-06
Author: ChWick@users.noreply.github.com
File Name: calamari_ocr/ocr/dataset/imageprocessors/center_normalizer.py
Class Name: CenterNormalizer
Method Name: measure