JMP 15 not compatible with JMP14 JSL
In JMP14, i am using code
r = dt << Get Rows Where( name("sex") == "M" );
But it does not work in JMP15.
I cannot change code at this point as it is used many places in the code.
have seen previously also with newer releases previous JMP JSL is not compatible, face the issue again.
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt << Get Rows Where( :sex == "M" );
Show( r );
ram_asra_gmail_