Hi. I created a Matched-Pair plot this way and it works.
mpObj = stackDT << Matched Pairs(
Y( column(stackDT, referenceDTName ), column(stackDT, currentDTName ) ),
Plot Dif By Mean( 0 ),
Plot Dif By Row( 1 ),
Reference Frame( 0 ),
By( :Test Item )
);
However, I am hoping to add formating to the Y-Axis of the plot such that it will be in Scientific format. I can do this if I modify the setting after the plot is created (NOTE: I am just showing a portion of the code):
SendToReport(
Dispatch( {"Difference: X: R1-Y: R2"}, "2", ScaleBox( 2 ),
{Format( "Engineering SI", 12 )}
)
)
I am hoping to include this formatting on the first code during the creation of the Matched Pair plot (so I don't have to do another step of formatting). Is this possible? If so, can you please show me.
Thanks!