Removing duplicates from data table in JMP 15
Hello Everybody,I have one script in which I want to remove duplicated values from a table based on the specified column. The following piece of code is used to remove duplicates and that works well with JMP 14.dt << Select duplicate rows( Match( :name ) );
selected = dt << get selected rows;
if (n rows(selected) > 0,
dt << delete rows;
);
In JMP 15, however, that does not seem to work. The rows ...