How can this "weight" classification be made faster?
The segmentation points of each body weight were calculated by combining and classifying the "Big Class.jmp", age and sex.
Each weight in each segment was then compared to these segment points to calculate the weight classification.dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Column( "TYP" );
Column( "TYP" ) << Formula( Char( age ) || sex );
dt << run formulas;
Column( "TYP" ) << deleteFormula;
...