Is there a way to output a dt of the "Ordered Differences Report" from a Oneway --> All Pairs() without having to go through the actual creation of the oneway?
I've got a pretty big dataset with a few thousand Oneway charts that takes a long time to grind through and plot, just to ultimately get a new dt of the pVal's.
Can we just skip the plotting?
ow1 = Oneway(
Y( :MEAN ),
X( :TOOL_PROCESS_CHAMBER ),
By(:RECIPE_PROCESS),
//All pairs Tukey HSD test
All Pairs(
1,
Confidence Quantile( 0 ),
Difference Matrix( 0 ),
LSD Threshold Matrix( 0 ),
Connecting Letters Report( 0 ),
Ordered Differences Report( 1 )
)
);
// Create the combined data table, using xPath (return a list of the OutlineBoxes from the report that have the title Ordered Differences Report. Then, use the first of those to make the combined data table.)
outlines = (Report( ow1[1] ) << Top Parent) << XPath( "//OutlineBox[text()='Ordered Differences Report']" );
dt1 = outlines[1][Table Box( 1 )] << Make Combined Data Table;