Thank you. I have tested the Group by function in the script, but it did not turn out as expected... I have adapted @markbailey s script with: dist << Group By (X (:sex));
Any suggestions what might be the problem here?
BR and thank you in advance
Names Default to Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dist = dt << Distribution( Y( :weight ), Invisible );
dist << Group By (X( :Sex));
rpt = dist << Report;
five pt summary = { min, q1, med, q3, max } = rpt["Quantiles"][NumberColBox(1)] << Get( { 11, 7, 6, 5, 1 });
dist << Close Window;