## This is 30 times slower
model = lingam.VARLiNGAM()
result = model.bootstrap(process_df, n_sampling=1)
## Than the following
model = lingam.VARLiNGAM(lags=lags)
process_df = variable_improvement(df_accounting, variable)
model.fit(process_df)
Would you know why this is the reason, and whould you know how to improve these times?
Would you know why this is the reason, and whould you know how to improve these times?