Insert list of column names into a formula
Hi,I am using JMP10. I am trying to create a script to delete duplicate rows of data in a data table. An example of my attempt is as follows:// Start.// Create data table.dt = open("$SAMPLE_DATA/Big Class.jmp");dt << Select Randomly(5);subdt = dt << Subset(Output Table Name("subset"), Invisible);dt << Concatenate(subdt, Append to First Table);Close(subdt, No Save);dt << Clear Select;// Find and ...
