Hi,
I have a "quick" question:
dt = Open( "$Sample_data/Big Class.jmp" );
//// These don't work;
dt << Select where( Column("sex") == "F");
dt << Select where( Column(3) == "F");
//// Only this works...why??
dt << Select where (:sex == "F");
I am pretty sure all these options used to work for me.....has something changed? I am using JMP16.
Reason I am asking is because I usually have the column names in a list, then create iteration using For loop and Column(colname[i]) to point to the appropriate column.
Any help will be much appreciated. Thank you.
Derchieh