-
Notifications
You must be signed in to change notification settings - Fork 76
Lags PID
Patricia Wollstadt edited this page Jul 18, 2018
·
1 revision
Lags are a required parameter in the settings
dictionary for PID estimation.
Lags describe the lag between the target and each of the two PID sources.
For single target analysis a list of two lags has to be specified:
settings = {'lags_pid': [2, 3]}
For a whole network analysis a list of lists with two lags each has to be specified. The outer list must be of same length as no. target in the analysis. Each inner list has to be of length two:
settings = {'lags_pid': [[1, 1], [3, 2], [0, 0]]}