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

How to solve the problem that distribution commands need specification limit confirmation when the system is Chinese?

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 )
		)
	)
);

截屏2023-08-31 11.17.49.png

 

2 REPLIES 2
txnelson
Super User

Re: How to solve the problem that distribution commands need specification limit confirmation when the system is Chinese?

This stounds like a bug.  I suggest that you contact JMP Support.

Jim
lehaofeng
Level IV

Re: How to solve the problem that distribution commands need specification limit confirmation when the system is Chinese?

Okay, thanks.