How to 'Save Best Transformation' in "Box-Cox Transformations" using JSL.
I need to save best transformation in the table using JSL. How can I achieve that?
Names Default To Here( 1 );
dt = Current Data Table();
// 1. Column Selection
dlg = Column Dialog( colList = Col List( "Select Test Column", Max Col( 1 ) ) );
If( dlg["Button"] == -1, Throw( "User cancelled" ) );
selectedColList = dlg["colList"];
col = Column( dt, selectedColList );
// 2. Run Fit Model to ac...