Using interaction effects in JSL fit model
Hi Community,I'm try to create a script that dynamically creates a model with main effects and interactions. For instance, I might have a subset of effect columns defined by the following: all_cols = Current Data Table () << Get Column Names(String);
effect_cols = all_cols[3::8];
And then I build a series of models reducing the effect_cols.Subsequently, I consider interaction terms. However, I'm ...