Thank you for this information!
At the moment my script looks roughly like this:
obj_expr = Expr(
obj = dt << Fit Model(
Y(rs_list[i]),
Effects,
Personality( "Stepwise" ),
Run( Stopping Rule( "Minimum AICc" ) ) // TO DO: BIC statt AICc als
Alternative
)
);
Substitute Into( obj_expr, Expr( Effects ), Parse(" Effects(" ||
modeleffects || " )"));
Eval( obj_expr );
obj << Go;
What you mean is that 'Go' just starts a background process and then the
next step of the script is immediately run, is that correct?
How would I access the 'Finish' message from Fit Stepwise?