//! /* This script requires JMP® to run. Download a 30-day free trial from jmp.com/trial */ Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Snapdragon.jmp" ); obj = Fit Model( Y( :Y ), Effects( :Soil, :Block ), Personality( Standard Least Squares ), Emphasis( Effect Leverage ), Run( :Y << {Lack of Fit( 0 ), Plot Actual by Predicted( 1 ), Plot Regression( 0 ), Plot Residual by Predicted( 1 ), Plot Effect Leverage( 1 ), Multiple Comparisons( Effect( Soil ), Tukey HSD( 1 ) )} ), SendToReport( Dispatch( {"Response Y"}, "Whole Model", OutlineBox, {Close( 1 )} ), Dispatch( {"Response Y"}, "Soil", OutlineBox, {Close( 1 )} ), Dispatch( {"Response Y"}, "Block", OutlineBox, {Close( 1 )} ) ) );