當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python clx.analytics.stats.rzscore用法及代碼示例


用法:

clx.analytics.stats.rzscore(series, window)

計算滾動z-score

參數

seriescudf.Series

計算滾動的係列z-score

windowint

窗口大小

返回

cudf.Series

具有滾動z-score 值的係列

例子

>>> import clx.analytics.stats
>>> import cudf
>>> sequence = [3,4,5,6,1,10,34,2,1,11,45,34,2,9,19,43,24,13,23,10,98,84,10]
>>> series = cudf.Series(sequence)
>>> zscores_df = cudf.DataFrame()
>>> zscores_df['zscore'] = clx.analytics.stats.rzscore(series, 7)
>>> zscores_df
            zscore
0           null
1           null
2           null
3           null
4           null
5           null
6    2.374423424
7   -0.645941275
8   -0.683973734
9    0.158832461
10   1.847751909
11   0.880026019
12  -0.950835449
13  -0.360593742
14   0.111407599
15   1.228914145
16  -0.074966331
17  -0.570321249
18   0.327849973
19  -0.934372308
20   2.296828498
21   1.282966989
22  -0.795223674

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 clx.analytics.stats.rzscore。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。