In Fit Y by X by Category, when you do a means comparisons using Tukey-Kramer test, is there any way to remove only the X axis label that appears "All Pairs Tukey-Kramer 0.05" only for the comaprator circles, with out removing the other category labels for the actual data...?
I cannot find a way to do it interactively but it's possible with JSL. Try running the example below.
ow = Open( "$ENGLISH_SAMPLE_DATA/Big Class.jmp" ) <<
Oneway( Y( :Height ), X( :Age ), All Pairs( 1 ) );
Report( ow )[String Col Box( 1 )] << delete;
Report( ow )[NumberBox( 1 )] << delete;
I cannot find a way to do it interactively but it's possible with JSL. Try running the example below.
ow = Open( "$ENGLISH_SAMPLE_DATA/Big Class.jmp" ) <<
Oneway( Y( :Height ), X( :Age ), All Pairs( 1 ) );
Report( ow )[String Col Box( 1 )] << delete;
Report( ow )[NumberBox( 1 )] << delete;
Thank you MS - that was exactly what I needed!