cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
lehaofeng
Level V

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 V

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

Okay, thanks.

Recommended Articles