Deleting specified rows
Hey JMP community, I am extremely new to jmp/jsl (literally just started this week). I have a script that is supposed to select where certain values in a row are less than 3, and then delete those rows. This is the script I have to do so:
dt << select where( :Residual 1 <= 3 );
dt << delete rows;
The code correctly selects the rows I want it to, but upon deleting the rows they "update" themsel...