cosanlab/nltools

Improve auto-correlation estimation during regression

已关闭

#307 创建于 2019年7月22日

 (0 条评论) (0 个反应) (0 位负责人)Python (48 个派生)github user discovery
enhancementhelp wanted

仓库指标

星标
 (130 个星标)
PR 合并指标
 (30 天内没有已合并 PR)

描述

Currently, we do a pretty crude ARMA model if the user wants to model auto-correlations. We have a few options to improve this:

  1. AFNI style: implement our own limited grid search of ARMA parameters per voxel rather than unconstrained optimization in statsmodels (currrent) - probably the trickiest and slowest
  2. Implement pre-whitening routines by first estimating OLS, then using the residuals of order N to adjust the data, and finally fit OLS again. Nistats has an implentation of this: see this and this.
  3. Port over SPMs new FAST routine which does something like using basis-sets of covariance matrices to account for auto-correlation

贡献者指南