In [1]:
E_vals = 2:10 # range to test of system dimensionality
tau_s_vals = 1:1 # range for lag length for manifold reconstruction
tau_p_vals = 0:15 # range to test for time lag of causal effect
ds = readdlm("vr.raw_fixed.txt", '\t', Float64, header=false) # read in data
para = ds[:, 2]
didi = ds[:, 3]
Out[1]:
In [4]:
para = para[1:2:end]
didi = didi[1:2:end]
Out[4]:
In [7]:
using CauseMap
nboots=20
makeoptimizationplots(para, didi, 8, 36, E_vals,
tau_s_vals, tau_p_vals, 36, 1, 'Para', 'Didi',
nboots=nboots)
In [ ]: