Why is it that my distribution command asks for no capability analysis, but when I run this code it still asks me to confirm that a capability analysis is performed.
There is no confirmation window when the system is in English, but there is when it is in Chinese. How to solve it, thanks!
Names Default To Here( 1 );
dt2 = New Table( "x", New Column( "y", set values( 1 :: 32 ) ) );
Column( dt2, 1 ) << Set Property(
"Spec Limits",
{LSL( 1 ), USL( 32 ), Target( 16 ), Show Limits( 1 )}
);
nw = New Window( "distribution window",
hb = H List Box(
obj2 = dt2 << Distribution(
Stack( 1 ),
Continuous Distribution(
Column( :y ),
Process Capability( 0 ),
Horizontal Layout( 1 ),
Vertical( 0 )
),
Histograms Only,
Automatic Recalc( 1 )
)
)
);