How to folding the code?
I follow the guideline fold the code, but after click it still not fold, don't know why.
How to operate through JMP or how to use script to fold the content we want?
//fold below arguments as one group
dt1 << Delete Rows( 10 ); //deletes row 10
dt1 << Delete Rows( {11, 12, 13} ); //deletes rows 11-13
dt1 << Delete Rows( 8 :: 25 ); //deletes first 20 rows
dt1 << Delete Rows( [1 2 3] );
dt1 ...