cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
aliegner1
Level IV

how to get combined dt of tTest pVal's without plotting Oneway first?

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;

 

2 REPLIES 2

Re: how to get combined dt of tTest pVal's without plotting Oneway first?

Try including the Invisible argument in the Oneway() function call.

aliegner1
Level IV

Re: how to get combined dt of tTest pVal's without plotting Oneway first?

hmm. I added "invisible" to my OW script, but its still taking 5+mins to churn through the source dt.