该帮助的版本不再更新,请参见https://www.jmp.com/support/help/zh-cn/15.2 获取最新的版本.


By group arguments are supported for these functions: ColMean(), ColStdDev(), ColNumber(), ColNMissing(), ColMinimum(), ColMaximum().
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << New Column( "Mean of height by sex", Numeric, Formula( Col Mean( :height, :sex ) ) );
dt << New Column( "Minimum of height by sex and age",
Formula( Col Minimum( :height, :sex, :age ) )
dt << Distribution( Continuous Distribution( Column( :height ) ), By( :sex ) );
dt << Tabulate(