Averaging with the Summary command. How can I use the mean column of the generated table to keep a significant number?
I have seen Big Class.jmp's table with the same JSL get a mean column that already retains a significant number, but my own table does not.dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt = Current Data Table();
d2 = dt << Summary(
Group( 2 ),
Mean( 4 ),
Freq( 0 ),
Weight( 0 ),
Link to original data table( 0 ),
statistics column name format( "column" )
);
Thanks!