Is there a faster way to loop?
Hello JMP community,
I am analyzing larger amounts of data, typically 350k rows.
For each row, the code runs a loop to calculate the mean offset by "Wafer ID". I’m looking for a faster way of doing this.
Is there a way to make the processing faster? The current script takes ~1 hour to complete the loop.
Names Default To Here( 1 );
dt1 = Data Table( "Reference Data Table.jmp" );
dt2 = Data Ta
...