cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

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

JMP 16 Adding Title to EWMA Control Chart

I am running an EWMA control chart via Analyze > Quality and Process > Control Chart >> EWMA Control Chart. It appears that I am unable to add a title to the chart. I am also trying to set up a script. I have the basic code,

 

EWMA Control Chart( Y( :Thickness ), Subgroup( :Date ), Lambda Slider( 1 ) );

 

in place. Is there a way through either scripting or the above portal to add a title? Can an EWMA Control Chart be setup through the Control Chart Builder? I tried but unable to make it happen. Thank you.

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: JMP 16 Adding Title to EWMA Control Chart

Normally, I just change the text on the Outline Box as my title

txnelson_0-1659908978426.pngtxnelson_0-1659908978426.png

Names Default To Here( 1 );
dt = 
// Open Data Table: big class.jmp
// → Data Table( "big class" )
Open( "$SAMPLE_DATA/big class.jmp" );

ew = EWMA Control Chart( Y( :height ), Subgroup( :age ), Lambda Slider( 1 ) );
Report( ew )[Outline Box( 3 )] << set title( "This could be your title" );

 

Jim

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: JMP 16 Adding Title to EWMA Control Chart

Normally, I just change the text on the Outline Box as my title

txnelson_0-1659908978426.pngtxnelson_0-1659908978426.png

Names Default To Here( 1 );
dt = 
// Open Data Table: big class.jmp
// → Data Table( "big class" )
Open( "$SAMPLE_DATA/big class.jmp" );

ew = EWMA Control Chart( Y( :height ), Subgroup( :age ), Lambda Slider( 1 ) );
Report( ew )[Outline Box( 3 )] << set title( "This could be your title" );

 

Jim
WoHNY
Level IV

Re: JMP 16 Adding Title to EWMA Control Chart

Jim, thank you for the response. This looks like it will take care of this issue.

Recommended Articles