I am doing a very large number of validation tests on a multiple regression prediction model that I continue to tweak and would like to automate part of the validation test process using a script. So far, I have not been able to "save to script" the part of the process where I generate and save a random subset of rows from my training dataset to use for validation testing.
When I do this manually I: 1) generate a random subset of rows (20 percent) from my main table, 2) save the subset, and 3) delete those subset rows from the main table and save the "new" main table (note that I made sure the subset table is linked to the main table to allow this step). I then go on to do the model analysis on the new main table and test how well the rows in the subset table fit (i.e. validation testing.)
How do I get JMP to "record" those moves in a script? So far, I haven't gotten it to recognize those moves. Thanks in advance!