cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
lehaofeng
Level V

How to add cpk or cp in the graph builder?

Thanks!

I want to add cpk or cp after other caption index in the graph builder, how to do it?

How can I get the mean value of the caption box? Especially when the X group variable has multiple categories.

lehaofeng_0-1725284608995.png

 

Graph Builder(
	Size( 532, 454 ),
	Show Control Panel( 0 ),
	Variables( Y( :height ), Group X( :sex ) ),
	Elements(
		Points( Y, Legend( 7 ) ),
		Caption Box(
			Y,
			Legend( 8 ),
			Summary Statistic( "Mean" ),
			Summary Statistic 2( "Std Dev" ),
			Summary Statistic 3( "Max" ),
#Summary Statistic 3( "Cpk" ) ) ) )

 

 

3 REPLIES 3
jthi
Super User

Re: How to add cpk or cp in the graph builder?

lehaofeng
Level V

Re: How to add cpk or cp in the graph builder?

TKS!   How do I get the mean value of the left half of the text box, the number of samples, I would like to build a loop that reads these values and then calculates the cpk based on these values

jthi
Super User

Re: How to add cpk or cp in the graph builder?

I would suggest you calculate them outside of graph builder. They can be easily calculated with Summary table, Tabulate platform Distribution platform or Summarize() function for example. Or you can create new columns to your table using Col Mean() with grouping variables.

-Jarmo