How to replace :column_name with variable in JMP JSL?
@jthiCan you help me to fix the code error below? How to use variable to replace :column name in the correct way? Thank you so much for your help. Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
hvar = "height";
gvar = "sex";
std = Col Std Dev( if(Excluded( Row State() ) == 0 & column(gvar) =="M", column(hvar) ));
//std = Col Std Dev( if(Excluded( Row State() ) == 0 & :sex =="M
...