I looks like Get Rows Where wants a simpler argument, try one of these
dtx=open("$sample_data/big class.jmp");
c=column(dtx,3);
dtx<<get rows where( dtx:c == "F" );
or
dtx=open("$sample_data/big class.jmp");
dtx<<get rows where( dtx:sex == "F" );
the odd looking returned value, [](0, 1), is JMP's empty array of 0 rows and 1 column. the two examples return more rows, of one column:
[1, 2, 3, 4, 5, 9, 10, 11, 16, 17, 18, 19, 20, 28, 29, 35, 36, 38]
Craige