cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

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