-
Notifications
You must be signed in to change notification settings - Fork 76
Maximum Lag
Patricia Wollstadt edited this page Jul 18, 2018
·
1 revision
The maximum lag is a required parameters in the settings
dictionary.
settings = {'maxlag': 5}
It is also possible to only include a subset of the past samples into the candidate sets. The parameter 'tau'
can be set to sub-sample the past of the processes, i.e. only adding every ith sample:
settings = {'max_lag': 5,
'tau': 2}