Additional functions for summary table via JSL
I would like to know how I can obtain summary tables but with additional statistics.For example, Mode() is a function that one can use in a formula, but this does not work: Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Summary( Group( :Age ),
subgroup( :sex ),
Mode( :Height )); // Mode isntead of mean
I would also like to summarize the tab...