Hi All,
I'm fairly new to JSL, and am hoping to get some assistance with an issue I've run into.
I'm trying to create a subset of selected rows (with all columns preserved) from a datatable, but in spite of trying just about everything I can find on these forums, in the JMP scripting guide, and in "Jump into JMP Scripting", I haven't been able to get this to happen.
The closest I've come is with the following, which creates the subset table, but includes all rows rather than just the ones I've selected (and the rows I want ARE selected in the main table) and also eliminates some columns.
data table("JoinedOutput") <<Select Where (Dilution==0.00005);
selRows = N row( dt << Get Selected Rows );
dt << Subset( output table name("JoinedSubset"));
What are people's thoughts? Any and all help is much appreciated!
Thanks!