functions.py 文件源码

python
阅读 60 收藏 0 点赞 0 评论 0

项目:orange3-timeseries 作者: biolab 项目源码 文件源码
def _significant_acf(corr, has_confint):
    if has_confint:
        corr, confint = corr

    periods = argrelextrema(np.abs(corr), np.greater, order=3)[0]
    corr = corr[periods]
    if has_confint:
        confint = confint[periods]

    result = np.column_stack((periods, corr))
    if has_confint:
        result = (result, np.column_stack((periods, confint)))
    return result
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号