Is there a way to move the default distributions chart "Quantiles" & "Summary Statistics" into the same column?
// Using sample data, I can generate a distribution chart using the following script:
...
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
rep = dt << Distribution(
Stack( 1 ),
Continuous Distribution(
Column( :height ),
Horizontal Layout( 1 ),
Vertical( 0 ),
Normal Quantile Plot( 1 ),
PpK Capability Labeling( 0 )
)
);
Report(rep)[Frame box(1)] << Row Legend("sex", color(1), marker(0));
// Is the